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

Side by Side Diff: content/common/worker_messages.h

Issue 2881073003: Support DataSaver for SharedWorker (Closed)
Patch Set: same as PS6 Created 3 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 unified diff | Download patch
« no previous file with comments | « content/common/view_messages.h ('k') | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // Defines messages between the browser and worker process, as well as between 5 // Defines messages between the browser and worker process, as well as between
6 // the renderer and worker process. 6 // the renderer and worker process.
7 7
8 // Multiply-included message file, hence no include guard. 8 // Multiply-included message file, hence no include guard.
9 9
10 #include <string> 10 #include <string>
(...skipping 27 matching lines...) Expand all
38 38
39 // Parameter structure for WorkerProcessMsg_CreateWorker. 39 // Parameter structure for WorkerProcessMsg_CreateWorker.
40 IPC_STRUCT_BEGIN(WorkerProcessMsg_CreateWorker_Params) 40 IPC_STRUCT_BEGIN(WorkerProcessMsg_CreateWorker_Params)
41 IPC_STRUCT_MEMBER(GURL, url) 41 IPC_STRUCT_MEMBER(GURL, url)
42 IPC_STRUCT_MEMBER(base::string16, name) 42 IPC_STRUCT_MEMBER(base::string16, name)
43 IPC_STRUCT_MEMBER(base::string16, content_security_policy) 43 IPC_STRUCT_MEMBER(base::string16, content_security_policy)
44 IPC_STRUCT_MEMBER(blink::WebContentSecurityPolicyType, security_policy_type) 44 IPC_STRUCT_MEMBER(blink::WebContentSecurityPolicyType, security_policy_type)
45 IPC_STRUCT_MEMBER(blink::WebAddressSpace, creation_address_space) 45 IPC_STRUCT_MEMBER(blink::WebAddressSpace, creation_address_space)
46 IPC_STRUCT_MEMBER(bool, pause_on_start) 46 IPC_STRUCT_MEMBER(bool, pause_on_start)
47 IPC_STRUCT_MEMBER(int, route_id) 47 IPC_STRUCT_MEMBER(int, route_id)
48 IPC_STRUCT_MEMBER(bool, data_saver_enabled)
48 IPC_STRUCT_END() 49 IPC_STRUCT_END()
49 50
50 //----------------------------------------------------------------------------- 51 //-----------------------------------------------------------------------------
51 // WorkerProcess messages 52 // WorkerProcess messages
52 // These are messages sent from the browser to the worker process. 53 // These are messages sent from the browser to the worker process.
53 IPC_MESSAGE_CONTROL1(WorkerProcessMsg_CreateWorker, 54 IPC_MESSAGE_CONTROL1(WorkerProcessMsg_CreateWorker,
54 WorkerProcessMsg_CreateWorker_Params) 55 WorkerProcessMsg_CreateWorker_Params)
55 56
56 //----------------------------------------------------------------------------- 57 //-----------------------------------------------------------------------------
57 // WorkerProcessHost messages 58 // WorkerProcessHost messages
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 112
112 IPC_MESSAGE_CONTROL1(WorkerHostMsg_WorkerScriptLoaded, 113 IPC_MESSAGE_CONTROL1(WorkerHostMsg_WorkerScriptLoaded,
113 int /* worker_route_id */) 114 int /* worker_route_id */)
114 115
115 IPC_MESSAGE_CONTROL1(WorkerHostMsg_WorkerScriptLoadFailed, 116 IPC_MESSAGE_CONTROL1(WorkerHostMsg_WorkerScriptLoadFailed,
116 int /* worker_route_id */) 117 int /* worker_route_id */)
117 118
118 IPC_MESSAGE_CONTROL2(WorkerHostMsg_WorkerConnected, 119 IPC_MESSAGE_CONTROL2(WorkerHostMsg_WorkerConnected,
119 int /* connection_request_id */, 120 int /* connection_request_id */,
120 int /* worker_route_id */) 121 int /* worker_route_id */)
OLDNEW
« no previous file with comments | « content/common/view_messages.h ('k') | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698