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

Side by Side Diff: content/browser/shared_worker/shared_worker_instance.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, 4 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_SHARED_WORKER_SHARED_WORKER_INSTANCE_H_ 5 #ifndef CONTENT_BROWSER_SHARED_WORKER_SHARED_WORKER_INSTANCE_H_
6 #define CONTENT_BROWSER_SHARED_WORKER_SHARED_WORKER_INSTANCE_H_ 6 #define CONTENT_BROWSER_SHARED_WORKER_SHARED_WORKER_INSTANCE_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "content/browser/worker_host/worker_storage_partition.h" 11 #include "content/browser/shared_worker/worker_storage_partition.h"
12 #include "content/common/content_export.h" 12 #include "content/common/content_export.h"
13 #include "third_party/WebKit/public/web/WebContentSecurityPolicy.h" 13 #include "third_party/WebKit/public/web/WebContentSecurityPolicy.h"
14 #include "url/gurl.h" 14 #include "url/gurl.h"
15 15
16 namespace content { 16 namespace content {
17 class ResourceContext; 17 class ResourceContext;
18 18
19 // SharedWorkerInstance is copyable value-type data type. It could be passed to 19 // SharedWorkerInstance is copyable value-type data type. It could be passed to
20 // the UI thread and be used for comparison in EmbeddedWorkerDevToolsManager. 20 // the UI thread and be used for comparison in EmbeddedWorkerDevToolsManager.
21 class CONTENT_EXPORT SharedWorkerInstance { 21 class CONTENT_EXPORT SharedWorkerInstance {
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 const base::string16 content_security_policy_; 61 const base::string16 content_security_policy_;
62 const blink::WebContentSecurityPolicyType security_policy_type_; 62 const blink::WebContentSecurityPolicyType security_policy_type_;
63 ResourceContext* const resource_context_; 63 ResourceContext* const resource_context_;
64 const WorkerStoragePartitionId partition_id_; 64 const WorkerStoragePartitionId partition_id_;
65 }; 65 };
66 66
67 } // namespace content 67 } // namespace content
68 68
69 69
70 #endif // CONTENT_BROWSER_SHARED_WORKER_SHARED_WORKER_INSTANCE_H_ 70 #endif // CONTENT_BROWSER_SHARED_WORKER_SHARED_WORKER_INSTANCE_H_
OLDNEW
« no previous file with comments | « content/browser/shared_worker/shared_worker_host.cc ('k') | content/browser/shared_worker/shared_worker_instance_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698