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

Side by Side Diff: content/common/frame_messages.h

Issue 1680143002: Simulate click through gamepad BUTTON_A (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: simulate click Created 4 years, 7 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 // IPC messages for interacting with frames. 5 // IPC messages for interacting with frames.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 574 matching lines...) Expand 10 before | Expand all | Expand 10 after
585 IPC_MESSAGE_ROUTED4(FrameMsg_SetChildFrameSurface, 585 IPC_MESSAGE_ROUTED4(FrameMsg_SetChildFrameSurface,
586 cc::SurfaceId /* surface_id */, 586 cc::SurfaceId /* surface_id */,
587 gfx::Size /* frame_size */, 587 gfx::Size /* frame_size */,
588 float /* scale_factor */, 588 float /* scale_factor */,
589 cc::SurfaceSequence /* sequence */) 589 cc::SurfaceSequence /* sequence */)
590 590
591 // Notifies the embedding frame that the process rendering the child frame's 591 // Notifies the embedding frame that the process rendering the child frame's
592 // contents has terminated. 592 // contents has terminated.
593 IPC_MESSAGE_ROUTED0(FrameMsg_ChildFrameProcessGone) 593 IPC_MESSAGE_ROUTED0(FrameMsg_ChildFrameProcessGone)
594 594
595 IPC_MESSAGE_ROUTED0(FrameMsg_ClickOnFocusedElement);
596
595 // Sent in response to a FrameHostMsg_ContextMenu to let the renderer know that 597 // Sent in response to a FrameHostMsg_ContextMenu to let the renderer know that
596 // the menu has been closed. 598 // the menu has been closed.
597 IPC_MESSAGE_ROUTED1(FrameMsg_ContextMenuClosed, 599 IPC_MESSAGE_ROUTED1(FrameMsg_ContextMenuClosed,
598 content::CustomContextMenuContext /* custom_context */) 600 content::CustomContextMenuContext /* custom_context */)
599 601
600 // Reloads all the Lo-Fi images in the RenderFrame. Ignores the cache and 602 // Reloads all the Lo-Fi images in the RenderFrame. Ignores the cache and
601 // reloads from the network. 603 // reloads from the network.
602 IPC_MESSAGE_ROUTED0(FrameMsg_ReloadLoFiImages) 604 IPC_MESSAGE_ROUTED0(FrameMsg_ReloadLoFiImages)
603 605
604 // Executes custom context menu action that was provided from Blink. 606 // Executes custom context menu action that was provided from Blink.
(...skipping 841 matching lines...) Expand 10 before | Expand all | Expand 10 after
1446 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, 1448 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply,
1447 int /* version */, 1449 int /* version */,
1448 std::vector<gfx::RectF> /* rects */, 1450 std::vector<gfx::RectF> /* rects */,
1449 gfx::RectF /* active_rect */) 1451 gfx::RectF /* active_rect */)
1450 #endif 1452 #endif
1451 1453
1452 // Adding a new message? Stick to the sort order above: first platform 1454 // Adding a new message? Stick to the sort order above: first platform
1453 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1455 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1454 // platform independent FrameHostMsg, then ifdefs for platform specific 1456 // platform independent FrameHostMsg, then ifdefs for platform specific
1455 // FrameHostMsg. 1457 // FrameHostMsg.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698