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

Unified Diff: content/worker/worker_webapplicationcachehost_impl.h

Issue 411283002: Remove disable-embedded-shared-worker flag and shared worker process related codes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 5 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 | « content/worker/worker_thread.cc ('k') | content/worker/worker_webapplicationcachehost_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/worker/worker_webapplicationcachehost_impl.h
diff --git a/content/worker/worker_webapplicationcachehost_impl.h b/content/worker/worker_webapplicationcachehost_impl.h
deleted file mode 100644
index e431e76eb2a883471b5a65683c2732f6fc46f6b9..0000000000000000000000000000000000000000
--- a/content/worker/worker_webapplicationcachehost_impl.h
+++ /dev/null
@@ -1,36 +0,0 @@
-// Copyright (c) 2012 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 "content/child/appcache/web_application_cache_host_impl.h"
-
-namespace content {
-
-class WorkerWebApplicationCacheHostImpl : public WebApplicationCacheHostImpl {
- public:
- WorkerWebApplicationCacheHostImpl(
- blink::WebApplicationCacheHostClient* client);
-
- // Main resource loading is different for workers. The main resource is
- // loaded by the worker using WorkerScriptLoader.
- // These overrides are stubbed out.
- virtual void willStartMainResourceRequest(
- blink::WebURLRequest&, const blink::WebApplicationCacheHost*);
- virtual void didReceiveResponseForMainResource(
- const blink::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.
- // These overrides are stubbed out.
- virtual void selectCacheWithoutManifest();
- virtual bool selectCacheWithManifest(const blink::WebURL& manifestURL);
-};
-
-} // namespace content
-
-#endif // CHROME_WORKER_WORKER_WEBAPPLICATIONCACHEHOST_IMPL_H_
« no previous file with comments | « content/worker/worker_thread.cc ('k') | content/worker/worker_webapplicationcachehost_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698