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

Side by Side Diff: content/common/browser_plugin/browser_plugin_messages.h

Issue 17447005: <webview>: Move back, forward, canGoBack, canGoForward, go from content to chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@filter_listener
Patch Set: Merge against latest changes in other CL Created 7 years, 6 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
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 // 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 IPC_STRUCT_MEMBER(std::string, storage_partition_id) 78 IPC_STRUCT_MEMBER(std::string, storage_partition_id)
79 IPC_STRUCT_MEMBER(bool, persist_storage) 79 IPC_STRUCT_MEMBER(bool, persist_storage)
80 IPC_STRUCT_MEMBER(std::string, name) 80 IPC_STRUCT_MEMBER(std::string, name)
81 IPC_STRUCT_END() 81 IPC_STRUCT_END()
82 82
83 IPC_STRUCT_BEGIN(BrowserPluginMsg_LoadCommit_Params) 83 IPC_STRUCT_BEGIN(BrowserPluginMsg_LoadCommit_Params)
84 // The current URL of the guest. 84 // The current URL of the guest.
85 IPC_STRUCT_MEMBER(GURL, url) 85 IPC_STRUCT_MEMBER(GURL, url)
86 // Indicates whether the navigation was on the top-level frame. 86 // Indicates whether the navigation was on the top-level frame.
87 IPC_STRUCT_MEMBER(bool, is_top_level) 87 IPC_STRUCT_MEMBER(bool, is_top_level)
88 // The index of the current navigation entry after this navigation was
89 // committed.
90 IPC_STRUCT_MEMBER(int, current_entry_index)
91 // The number of navigation entries after this navigation was committed.
92 IPC_STRUCT_MEMBER(int, entry_count)
93 IPC_STRUCT_END() 88 IPC_STRUCT_END()
94 89
95 IPC_STRUCT_BEGIN(BrowserPluginMsg_UpdateRect_Params) 90 IPC_STRUCT_BEGIN(BrowserPluginMsg_UpdateRect_Params)
96 // The sequence number of the damage buffer used by the browser process. 91 // The sequence number of the damage buffer used by the browser process.
97 IPC_STRUCT_MEMBER(uint32, damage_buffer_sequence_id) 92 IPC_STRUCT_MEMBER(uint32, damage_buffer_sequence_id)
98 93
99 // The position and size of the bitmap. 94 // The position and size of the bitmap.
100 IPC_STRUCT_MEMBER(gfx::Rect, bitmap_rect) 95 IPC_STRUCT_MEMBER(gfx::Rect, bitmap_rect)
101 96
102 // The scroll delta. Only one of the delta components can be non-zero, and if 97 // The scroll delta. Only one of the delta components can be non-zero, and if
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after
452 // request to the embeddder through this message. 447 // request to the embeddder through this message.
453 IPC_MESSAGE_CONTROL4(BrowserPluginMsg_RequestPermission, 448 IPC_MESSAGE_CONTROL4(BrowserPluginMsg_RequestPermission,
454 int /* instance_id */, 449 int /* instance_id */,
455 BrowserPluginPermissionType /* permission_type */, 450 BrowserPluginPermissionType /* permission_type */,
456 int /* request_id */, 451 int /* request_id */,
457 base::DictionaryValue /* request_info */) 452 base::DictionaryValue /* request_info */)
458 453
459 // Forwards a PointerLock Unlock request to the BrowserPlugin. 454 // Forwards a PointerLock Unlock request to the BrowserPlugin.
460 IPC_MESSAGE_CONTROL1(BrowserPluginMsg_UnlockMouse, int /* instance_id */) 455 IPC_MESSAGE_CONTROL1(BrowserPluginMsg_UnlockMouse, int /* instance_id */)
461 456
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698