From 284837daa07b29d6a63a748544a90b1f5842ac5c Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Mon, 10 Sep 2012 19:10:20 +0200 Subject: Imported WebKit commit 68645295d2e3e09af2c942f092556f06aa5f8b0d (http://svn.webkit.org/repository/webkit/trunk@128073) New snapshot --- Source/WebKit2/UIProcess/WebApplicationCacheManagerProxy.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Source/WebKit2/UIProcess/WebApplicationCacheManagerProxy.cpp') diff --git a/Source/WebKit2/UIProcess/WebApplicationCacheManagerProxy.cpp b/Source/WebKit2/UIProcess/WebApplicationCacheManagerProxy.cpp index 5ea62cdc3..f43c819fd 100644 --- a/Source/WebKit2/UIProcess/WebApplicationCacheManagerProxy.cpp +++ b/Source/WebKit2/UIProcess/WebApplicationCacheManagerProxy.cpp @@ -69,7 +69,7 @@ void WebApplicationCacheManagerProxy::getApplicationCacheOrigins(PassRefPtrcallbackID(); m_arrayCallbacks.set(callbackID, callback.release()); - // FIXME (Multi-WebProcess): The application cache shouldn't be stored in the web process. + // FIXME (Multi-WebProcess): Make manipulating cache information work with per-tab WebProcess. m_webContext->sendToAllProcessesRelaunchingThemIfNecessary(Messages::WebApplicationCacheManager::GetApplicationCacheOrigins(callbackID)); } @@ -86,13 +86,13 @@ void WebApplicationCacheManagerProxy::deleteEntriesForOrigin(WebSecurityOrigin* securityOriginData.host = origin->host(); securityOriginData.port = origin->port(); - // FIXME (Multi-WebProcess): The application cache shouldn't be stored in the web process. + // FIXME (Multi-WebProcess): Make manipulating cache information work with per-tab WebProcess. m_webContext->sendToAllProcessesRelaunchingThemIfNecessary(Messages::WebApplicationCacheManager::DeleteEntriesForOrigin(securityOriginData)); } void WebApplicationCacheManagerProxy::deleteAllEntries() { - // FIXME (Multi-WebProcess): The application cache shouldn't be stored in the web process. + // FIXME (Multi-WebProcess): Make manipulating cache information work with per-tab WebProcess. m_webContext->sendToAllProcessesRelaunchingThemIfNecessary(Messages::WebApplicationCacheManager::DeleteAllEntries()); } -- cgit v1.2.1