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 // Multiply-included message header, no traditional include guard. | 5 // Multiply-included message header, no traditional include guard. |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/process.h" | 10 #include "base/process.h" |
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
317 // the BrowserPluginMsg_Close message. | 317 // the BrowserPluginMsg_Close message. |
318 IPC_MESSAGE_CONTROL1(BrowserPluginMsg_Close, | 318 IPC_MESSAGE_CONTROL1(BrowserPluginMsg_Close, |
319 int /* instance_id */) | 319 int /* instance_id */) |
320 | 320 |
321 // Once the swapped out guest RenderView has been created in the embedder render | 321 // Once the swapped out guest RenderView has been created in the embedder render |
322 // process, the browser process informs the embedder of its routing ID. | 322 // process, the browser process informs the embedder of its routing ID. |
323 IPC_MESSAGE_CONTROL2(BrowserPluginMsg_GuestContentWindowReady, | 323 IPC_MESSAGE_CONTROL2(BrowserPluginMsg_GuestContentWindowReady, |
324 int /* instance_id */, | 324 int /* instance_id */, |
325 int /* source_routing_id */) | 325 int /* source_routing_id */) |
326 | 326 |
327 // After the load handler of the guest's main frame is called, the browser | |
328 // process informs the embedder through the BrowserPluginMsg_LoadHandlerCalled | |
329 // message. | |
330 IPC_MESSAGE_CONTROL1(BrowserPluginMsg_LoadHandlerCalled, | |
331 int /* instance_id */) | |
332 | |
333 // When the guest begins to load a page, the browser process informs the | 327 // When the guest begins to load a page, the browser process informs the |
334 // embedder through the BrowserPluginMsg_LoadStart message. | 328 // embedder through the BrowserPluginMsg_LoadStart message. |
335 IPC_MESSAGE_CONTROL3(BrowserPluginMsg_LoadStart, | 329 IPC_MESSAGE_CONTROL3(BrowserPluginMsg_LoadStart, |
336 int /* instance_id */, | 330 int /* instance_id */, |
337 GURL /* url */, | 331 GURL /* url */, |
338 bool /* is_top_level */) | 332 bool /* is_top_level */) |
339 | 333 |
340 // If the guest fails to commit a page load then it will inform the | 334 // If the guest fails to commit a page load then it will inform the |
341 // embedder through the BrowserPluginMsg_LoadAbort. A description | 335 // embedder through the BrowserPluginMsg_LoadAbort. A description |
342 // of the error will be stored in |type|. The list of known error | 336 // of the error will be stored in |type|. The list of known error |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
437 // request to the embeddder through this message. | 431 // request to the embeddder through this message. |
438 IPC_MESSAGE_CONTROL4(BrowserPluginMsg_RequestPermission, | 432 IPC_MESSAGE_CONTROL4(BrowserPluginMsg_RequestPermission, |
439 int /* instance_id */, | 433 int /* instance_id */, |
440 BrowserPluginPermissionType /* permission_type */, | 434 BrowserPluginPermissionType /* permission_type */, |
441 int /* request_id */, | 435 int /* request_id */, |
442 base::DictionaryValue /* request_info */) | 436 base::DictionaryValue /* request_info */) |
443 | 437 |
444 // Forwards a PointerLock Unlock request to the BrowserPlugin. | 438 // Forwards a PointerLock Unlock request to the BrowserPlugin. |
445 IPC_MESSAGE_CONTROL1(BrowserPluginMsg_UnlockMouse, int /* instance_id */) | 439 IPC_MESSAGE_CONTROL1(BrowserPluginMsg_UnlockMouse, int /* instance_id */) |
446 | 440 |
OLD | NEW |