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

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

Issue 1500873002: Implement sequential focus navigation for OOPIF. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Daniel's comments Created 5 years 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/browser/site_per_process_browsertest.cc ('k') | content/common/frame_messages.h » ('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 // 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/process.h" 10 #include "base/process/process.h"
(...skipping 19 matching lines...) Expand all
30 #include "ui/gfx/ipc/gfx_param_traits.h" 30 #include "ui/gfx/ipc/gfx_param_traits.h"
31 #include "url/gurl.h" 31 #include "url/gurl.h"
32 32
33 #undef IPC_MESSAGE_EXPORT 33 #undef IPC_MESSAGE_EXPORT
34 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT 34 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT
35 35
36 #define IPC_MESSAGE_START BrowserPluginMsgStart 36 #define IPC_MESSAGE_START BrowserPluginMsgStart
37 37
38 38
39 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebDragStatus, blink::WebDragStatusLast) 39 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebDragStatus, blink::WebDragStatusLast)
40 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebFocusType, blink::WebFocusTypeLast)
41 40
42 IPC_STRUCT_BEGIN(BrowserPluginHostMsg_Attach_Params) 41 IPC_STRUCT_BEGIN(BrowserPluginHostMsg_Attach_Params)
43 IPC_STRUCT_MEMBER(bool, focused) 42 IPC_STRUCT_MEMBER(bool, focused)
44 IPC_STRUCT_MEMBER(bool, visible) 43 IPC_STRUCT_MEMBER(bool, visible)
45 // The new size of the guest view. 44 // The new size of the guest view.
46 IPC_STRUCT_MEMBER(gfx::Rect, view_rect) 45 IPC_STRUCT_MEMBER(gfx::Rect, view_rect)
47 // Whether the browser plugin is a full page plugin document. 46 // Whether the browser plugin is a full page plugin document.
48 IPC_STRUCT_MEMBER(bool, is_full_page_plugin) 47 IPC_STRUCT_MEMBER(bool, is_full_page_plugin)
49 IPC_STRUCT_END() 48 IPC_STRUCT_END()
50 49
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 204
206 // Sends text to be displayed in tooltip. 205 // Sends text to be displayed in tooltip.
207 IPC_MESSAGE_CONTROL2(BrowserPluginMsg_SetTooltipText, 206 IPC_MESSAGE_CONTROL2(BrowserPluginMsg_SetTooltipText,
208 int /* browser_plugin_instance_id */, 207 int /* browser_plugin_instance_id */,
209 base::string16 /* tooltip_text */) 208 base::string16 /* tooltip_text */)
210 209
211 // Acknowledge that we presented an ubercomp frame. 210 // Acknowledge that we presented an ubercomp frame.
212 IPC_MESSAGE_CONTROL2(BrowserPluginHostMsg_CompositorFrameSwappedACK, 211 IPC_MESSAGE_CONTROL2(BrowserPluginHostMsg_CompositorFrameSwappedACK,
213 int /* browser_plugin_instance_id */, 212 int /* browser_plugin_instance_id */,
214 FrameHostMsg_CompositorFrameSwappedACK_Params /* params */) 213 FrameHostMsg_CompositorFrameSwappedACK_Params /* params */)
OLDNEW
« no previous file with comments | « content/browser/site_per_process_browsertest.cc ('k') | content/common/frame_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698