| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |