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

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

Issue 2783233004: Refine tap disambiguation UMA to track same-node/different-node. (Closed)
Patch Set: Created 3 years, 8 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 // IPC messages for page rendering. 5 // IPC messages for page rendering.
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 557 matching lines...) Expand 10 before | Expand all | Expand 10 after
568 // or not. 568 // or not.
569 IPC_MESSAGE_ROUTED1(ViewMsg_PpapiBrokerPermissionResult, 569 IPC_MESSAGE_ROUTED1(ViewMsg_PpapiBrokerPermissionResult,
570 bool /* result */) 570 bool /* result */)
571 #endif 571 #endif
572 572
573 // An acknowledge to ViewHostMsg_MultipleTargetsTouched to notify the renderer 573 // An acknowledge to ViewHostMsg_MultipleTargetsTouched to notify the renderer
574 // process to release the magnified image. 574 // process to release the magnified image.
575 IPC_MESSAGE_ROUTED1(ViewMsg_ReleaseDisambiguationPopupBitmap, 575 IPC_MESSAGE_ROUTED1(ViewMsg_ReleaseDisambiguationPopupBitmap,
576 cc::SharedBitmapId /* id */) 576 cc::SharedBitmapId /* id */)
577 577
578 IPC_MESSAGE_ROUTED3(ViewMsg_ResolveTapDisambiguation,
579 double /* timestamp_seconds */,
580 gfx::Point /* tap_viewport_offset */,
581 bool /* is_long_press */)
582
578 // Fetches complete rendered content of a web page as plain text. 583 // Fetches complete rendered content of a web page as plain text.
579 IPC_MESSAGE_ROUTED0(ViewMsg_GetRenderedText) 584 IPC_MESSAGE_ROUTED0(ViewMsg_GetRenderedText)
580 585
581 #if defined(OS_ANDROID) 586 #if defined(OS_ANDROID)
582 // Notifies the renderer whether hiding/showing the browser controls is enabled 587 // Notifies the renderer whether hiding/showing the browser controls is enabled
583 // and whether or not to animate to the proper state. 588 // and whether or not to animate to the proper state.
584 IPC_MESSAGE_ROUTED3(ViewMsg_UpdateBrowserControlsState, 589 IPC_MESSAGE_ROUTED3(ViewMsg_UpdateBrowserControlsState,
585 bool /* enable_hiding */, 590 bool /* enable_hiding */,
586 bool /* enable_showing */, 591 bool /* enable_showing */,
587 bool /* animate */) 592 bool /* animate */)
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
884 int /* y */) 889 int /* y */)
885 890
886 #elif defined(OS_MACOSX) 891 #elif defined(OS_MACOSX)
887 // Receives content of a web page as plain text. 892 // Receives content of a web page as plain text.
888 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) 893 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string)
889 #endif 894 #endif
890 895
891 // Adding a new message? Stick to the sort order above: first platform 896 // Adding a new message? Stick to the sort order above: first platform
892 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform 897 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform
893 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. 898 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698