diff options
author | michaeln@chromium.org <michaeln@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-13 18:24:46 +0000 |
---|---|---|
committer | michaeln@chromium.org <michaeln@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-13 18:24:46 +0000 |
commit | 19251afae2abfbf9703103e8bbb715146582cff7 (patch) | |
tree | 2dd403a51420b18d45303b36606a54e45a3ca561 /webkit/tools | |
parent | c573f48ce5560c07aa321aea0b9a90ded0690aa6 (diff) | |
download | chromium_src-19251afae2abfbf9703103e8bbb715146582cff7.zip chromium_src-19251afae2abfbf9703103e8bbb715146582cff7.tar.gz chromium_src-19251afae2abfbf9703103e8bbb715146582cff7.tar.bz2 |
Define two new IPC messages to initialize an appcache for a shared worker or a dedicated worker. There is no callsite for sending these messages yet, and there are no handlers for them either.
BUG=39368
TEST=nothing to test yet
Review URL: http://codereview.chromium.org/2037013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47165 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/tools')
-rw-r--r-- | webkit/tools/test_shell/simple_appcache_system.cc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/webkit/tools/test_shell/simple_appcache_system.cc b/webkit/tools/test_shell/simple_appcache_system.cc index e1f6e38..79bc557 100644 --- a/webkit/tools/test_shell/simple_appcache_system.cc +++ b/webkit/tools/test_shell/simple_appcache_system.cc @@ -166,6 +166,19 @@ class SimpleBackendProxy } } + virtual void SelectCacheForWorker( + int host_id, + int parent_process_id, + int parent_host_id) { + NOTREACHED(); // Workers are not supported in test_shell. + } + + virtual void SelectCacheForSharedWorker( + int host_id, + int64 appcache_id) { + NOTREACHED(); // Workers are not supported in test_shell. + } + virtual void MarkAsForeignEntry(int host_id, const GURL& document_url, int64 cache_document_was_loaded_from) { if (system_->is_ui_thread()) { |