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

Side by Side Diff: content/browser/service_worker/service_worker_provider_host.h

Issue 370833002: Move resource_type.* from webkit/ to content/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: chromeos fix 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_PROVIDER_HOST_H_ 5 #ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_PROVIDER_HOST_H_
6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_PROVIDER_HOST_H_ 6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_PROVIDER_HOST_H_
7 7
8 #include <set> 8 #include <set>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/memory/ref_counted.h" 11 #include "base/memory/ref_counted.h"
12 #include "base/memory/weak_ptr.h" 12 #include "base/memory/weak_ptr.h"
13 #include "content/common/content_export.h" 13 #include "content/common/content_export.h"
14 #include "content/common/service_worker/service_worker_types.h" 14 #include "content/common/service_worker/service_worker_types.h"
15 #include "webkit/common/resource_type.h" 15 #include "content/public/common/resource_type.h"
16 16
17 namespace IPC { 17 namespace IPC {
18 class Sender; 18 class Sender;
19 } 19 }
20 20
21 namespace webkit_blob { 21 namespace webkit_blob {
22 class BlobStorageContext; 22 class BlobStorageContext;
23 } 23 }
24 24
25 namespace content { 25 namespace content {
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 scoped_refptr<ServiceWorkerVersion> running_hosted_version_; 125 scoped_refptr<ServiceWorkerVersion> running_hosted_version_;
126 base::WeakPtr<ServiceWorkerContextCore> context_; 126 base::WeakPtr<ServiceWorkerContextCore> context_;
127 ServiceWorkerDispatcherHost* dispatcher_host_; 127 ServiceWorkerDispatcherHost* dispatcher_host_;
128 128
129 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerProviderHost); 129 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerProviderHost);
130 }; 130 };
131 131
132 } // namespace content 132 } // namespace content
133 133
134 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_PROVIDER_HOST_H_ 134 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_PROVIDER_HOST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698