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

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

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 int /* request_id */, 148 int /* request_id */,
149 float /* x */, 149 float /* x */,
150 float /* y */) 150 float /* y */)
151 #endif 151 #endif
152 152
153 // ----------------------------------------------------------------------------- 153 // -----------------------------------------------------------------------------
154 // Messages sent from the renderer to the browser. 154 // Messages sent from the renderer to the browser.
155 155
156 // Acknowledges receipt of a InputMsg_HandleInputEvent message. 156 // Acknowledges receipt of a InputMsg_HandleInputEvent message.
157 IPC_MESSAGE_ROUTED3(InputHostMsg_HandleInputEvent_ACK, 157 IPC_MESSAGE_ROUTED3(InputHostMsg_HandleInputEvent_ACK,
158 WebKit::WebInputEvent::Type, 158 blink::WebInputEvent::Type,
159 content::InputEventAckState /* ack_result */, 159 content::InputEventAckState /* ack_result */,
160 ui::LatencyInfo /* latency_info */) 160 ui::LatencyInfo /* latency_info */)
161 161
162 162
163 // Adding a new message? Stick to the sort order above: first platform 163 // Adding a new message? Stick to the sort order above: first platform
164 // independent InputMsg, then ifdefs for platform specific InputMsg, then 164 // independent InputMsg, then ifdefs for platform specific InputMsg, then
165 // platform independent InputHostMsg, then ifdefs for platform specific 165 // platform independent InputHostMsg, then ifdefs for platform specific
166 // InputHostMsg. 166 // InputHostMsg.
OLDNEW
« no previous file with comments | « content/common/input/web_input_event_traits.cc ('k') | content/common/page_state_serialization.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698