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

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

Issue 139563004: Notification on finish handling of top control gesture (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 11 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) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 input events and other messages that require processing in 5 // IPC messages for input events and other messages that require processing in
6 // order relative to input events. 6 // order relative to input events.
7 // Multiply-included message file, hence no include guard. 7 // Multiply-included message file, hence no include guard.
8 8
9 #include "base/strings/string16.h" 9 #include "base/strings/string16.h"
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 content::InputEventAckState /* ack_result */, 182 content::InputEventAckState /* ack_result */,
183 ui::LatencyInfo /* latency_info */) 183 ui::LatencyInfo /* latency_info */)
184 184
185 IPC_MESSAGE_ROUTED1(InputHostMsg_QueueSyntheticGesture, 185 IPC_MESSAGE_ROUTED1(InputHostMsg_QueueSyntheticGesture,
186 content::SyntheticGesturePacket) 186 content::SyntheticGesturePacket)
187 187
188 // Notifies the allowed touch actions for a new touch point. 188 // Notifies the allowed touch actions for a new touch point.
189 IPC_MESSAGE_ROUTED1(InputHostMsg_SetTouchAction, 189 IPC_MESSAGE_ROUTED1(InputHostMsg_SetTouchAction,
190 content::TouchAction /* touch_action */) 190 content::TouchAction /* touch_action */)
191 191
192 IPC_MESSAGE_ROUTED0(InputHostMsg_DidFinishTopControlsGesture)
193
192 // Adding a new message? Stick to the sort order above: first platform 194 // Adding a new message? Stick to the sort order above: first platform
193 // independent InputMsg, then ifdefs for platform specific InputMsg, then 195 // independent InputMsg, then ifdefs for platform specific InputMsg, then
194 // platform independent InputHostMsg, then ifdefs for platform specific 196 // platform independent InputHostMsg, then ifdefs for platform specific
195 // InputHostMsg. 197 // InputHostMsg.
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_base.cc ('k') | content/port/browser/render_widget_host_view_port.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698