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

Side by Side Diff: chrome/common/worker_messages_internal.h

Issue 390017: Added lifecycle management and sharing support for SharedWorkers. SharedWorkers (Closed)
Patch Set: Changed WebWorkerBase not not call a virtual function from the destructor Created 11 years, 1 month 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 (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 #include <utility> 5 #include <utility>
6 #include <vector> 6 #include <vector>
7 #include "base/string16.h" 7 #include "base/string16.h"
8 #include "googleurl/src/gurl.h" 8 #include "googleurl/src/gurl.h"
9 #include "ipc/ipc_message_macros.h" 9 #include "ipc/ipc_message_macros.h"
10 10
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 116
117 IPC_MESSAGE_ROUTED1(WorkerHostMsg_PostConsoleMessageToWorkerObject, 117 IPC_MESSAGE_ROUTED1(WorkerHostMsg_PostConsoleMessageToWorkerObject,
118 WorkerHostMsg_PostConsoleMessageToWorkerObject_Params) 118 WorkerHostMsg_PostConsoleMessageToWorkerObject_Params)
119 119
120 IPC_MESSAGE_ROUTED1(WorkerHostMsg_ConfirmMessageFromWorkerObject, 120 IPC_MESSAGE_ROUTED1(WorkerHostMsg_ConfirmMessageFromWorkerObject,
121 bool /* bool has_pending_activity */) 121 bool /* bool has_pending_activity */)
122 122
123 IPC_MESSAGE_ROUTED1(WorkerHostMsg_ReportPendingActivity, 123 IPC_MESSAGE_ROUTED1(WorkerHostMsg_ReportPendingActivity,
124 bool /* bool has_pending_activity */) 124 bool /* bool has_pending_activity */)
125 125
126 IPC_MESSAGE_CONTROL1(WorkerHostMsg_WorkerContextClosed,
127 int /* worker_route_id */)
126 IPC_MESSAGE_ROUTED0(WorkerHostMsg_WorkerContextDestroyed) 128 IPC_MESSAGE_ROUTED0(WorkerHostMsg_WorkerContextDestroyed)
127 IPC_END_MESSAGES(WorkerHost) 129 IPC_END_MESSAGES(WorkerHost)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698