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

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

Issue 2867693004: Snapshot of all changes to get jumbo in blink and content.
Patch Set: Rebased again Created 3 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
« no previous file with comments | « content/common/view_messages.h ('k') | content/content.gni » ('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 #ifndef CONTENT_COMMON_WORKER_MESSAGES_H_
6 #define CONTENT_COMMON_WORKER_MESSAGES_H_
7
5 // Defines messages between the browser and worker process, as well as between 8 // Defines messages between the browser and worker process, as well as between
6 // the renderer and worker process. 9 // the renderer and worker process.
7 10
8 // Multiply-included message file, hence no include guard. 11 // Multiply-included message file, hence no include guard.
9 12
10 #include <string> 13 #include <string>
11 #include <utility> 14 #include <utility>
12 #include <vector> 15 #include <vector>
13 16
14 #include "base/strings/string16.h" 17 #include "base/strings/string16.h"
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 115
113 IPC_MESSAGE_CONTROL1(WorkerHostMsg_WorkerScriptLoaded, 116 IPC_MESSAGE_CONTROL1(WorkerHostMsg_WorkerScriptLoaded,
114 int /* worker_route_id */) 117 int /* worker_route_id */)
115 118
116 IPC_MESSAGE_CONTROL1(WorkerHostMsg_WorkerScriptLoadFailed, 119 IPC_MESSAGE_CONTROL1(WorkerHostMsg_WorkerScriptLoadFailed,
117 int /* worker_route_id */) 120 int /* worker_route_id */)
118 121
119 IPC_MESSAGE_CONTROL2(WorkerHostMsg_WorkerConnected, 122 IPC_MESSAGE_CONTROL2(WorkerHostMsg_WorkerConnected,
120 int /* connection_request_id */, 123 int /* connection_request_id */,
121 int /* worker_route_id */) 124 int /* worker_route_id */)
125
126 #endif // CONTENT_COMMON_WORKER_MESSAGES_H_
OLDNEW
« no previous file with comments | « content/common/view_messages.h ('k') | content/content.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698