summaryrefslogtreecommitdiffstats
path: root/android_webview/common
diff options
context:
space:
mode:
authorboliu@chromium.org <boliu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-03 01:44:46 +0000
committerboliu@chromium.org <boliu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-03 01:44:46 +0000
commit86b74e06db75748b22131bef171975f8785c8552 (patch)
treeeb6f0f1e327248a66cc9eb2591f9be6882a03a61 /android_webview/common
parentab0a9651b308bce418735aaa87a906f118467ff3 (diff)
downloadchromium_src-86b74e06db75748b22131bef171975f8785c8552.zip
chromium_src-86b74e06db75748b22131bef171975f8785c8552.tar.gz
chromium_src-86b74e06db75748b22131bef171975f8785c8552.tar.bz2
Implement part of Android WebView.clearCache
For velocity, not refactoring BrowsingDataRemover code into content/. This method is similar to BrowsingDataRemover::REMOVE_CACHE mask. Still need to implement clearing http disk cache. BUG= Review URL: https://chromiumcodereview.appspot.com/11051003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@159827 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'android_webview/common')
-rw-r--r--android_webview/common/render_view_messages.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/android_webview/common/render_view_messages.h b/android_webview/common/render_view_messages.h
index 52bea1b..96978b1 100644
--- a/android_webview/common/render_view_messages.h
+++ b/android_webview/common/render_view_messages.h
@@ -26,6 +26,9 @@ namespace IPC {
// RenderView messages
// These are messages sent from the browser to the renderer process.
+// Tells the renderer to drop all WebCore memory cache.
+IPC_MESSAGE_CONTROL0(AwViewMsg_ClearCache);
+
// Request for the renderer to determine if the document contains any image
// elements. The id should be passed in the response message so the response
// can be associated with the request.