Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6945)

Unified Diff: chrome/worker/worker_webapplicationcachehost_impl.h

Issue 1719007: Initializing an appcache host in a worker process. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/worker/worker_thread.cc ('k') | chrome/worker/worker_webapplicationcachehost_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/worker/worker_webapplicationcachehost_impl.h
===================================================================
--- chrome/worker/worker_webapplicationcachehost_impl.h (revision 0)
+++ chrome/worker/worker_webapplicationcachehost_impl.h (revision 0)
@@ -0,0 +1,52 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_WORKER_WORKER_WEBAPPLICATIONCACHEHOST_IMPL_H_
+#define CHROME_WORKER_WORKER_WEBAPPLICATIONCACHEHOST_IMPL_H_
+
+#include "webkit/appcache/web_application_cache_host_impl.h"
+
+// Information used to construct and initialize an appcache host
+// for a worker.
+struct WorkerAppCacheInitInfo {
+ bool is_shared_worker;
+ int parent_process_id;
+ int parent_appcache_host_id; // Only valid for dedicated workers.
+ int64 main_resource_appcache_id; // Only valid for shared workers.
+
+ WorkerAppCacheInitInfo()
+ : is_shared_worker(false), parent_process_id(0),
+ parent_appcache_host_id(0), main_resource_appcache_id(0) {
+ }
+ WorkerAppCacheInitInfo(
+ bool is_shared, int process_id, int host_id, int64 cache_id)
+ : is_shared_worker(is_shared), parent_process_id(process_id),
+ parent_appcache_host_id(host_id), main_resource_appcache_id(cache_id) {
+ }
+};
+
+class WorkerWebApplicationCacheHostImpl
+ : public appcache::WebApplicationCacheHostImpl {
+ public:
+ WorkerWebApplicationCacheHostImpl(
+ const WorkerAppCacheInitInfo& init_info,
+ WebKit::WebApplicationCacheHostClient* client);
+
+ // Main resource loading is different for workers. The resource is
+ // loaded by the creator of the worker rather than the worker itself.
+ virtual void willStartMainResourceRequest(WebKit::WebURLRequest&) {}
+ virtual void didReceiveResponseForMainResource(
+ const WebKit::WebURLResponse&) {}
+ virtual void didReceiveDataForMainResource(const char* data, int len) {}
+ virtual void didFinishLoadingMainResource(bool success) {}
+
+ // Cache selection is also different for workers. We know at construction
+ // time what cache to select and do so then.
+ virtual void selectCacheWithoutManifest() {}
+ virtual bool selectCacheWithManifest(const WebKit::WebURL& manifestURL) {
+ return true;
+ }
+};
+
+#endif // CHROME_WORKER_WORKER_WEBAPPLICATIONCACHEHOST_IMPL_H_
Property changes on: chrome\worker\worker_webapplicationcachehost_impl.h
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « chrome/worker/worker_thread.cc ('k') | chrome/worker/worker_webapplicationcachehost_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698