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

Unified Diff: content/browser/renderer_host/input/input_router_impl_perftest.cc

Issue 1050993004: Route touchmove existence notifications to the TouchEventQueue (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/renderer_host/input/input_router_impl_perftest.cc
diff --git a/content/browser/renderer_host/input/input_router_impl_perftest.cc b/content/browser/renderer_host/input/input_router_impl_perftest.cc
index 48def2af907f0dfac7876644ee52513f3ed5655c..e2144e3f7759b22f628214733d58e8f706983355 100644
--- a/content/browser/renderer_host/input/input_router_impl_perftest.cc
+++ b/content/browser/renderer_host/input/input_router_impl_perftest.cc
@@ -9,7 +9,6 @@
#include "content/browser/renderer_host/input/input_router_impl.h"
#include "content/common/input/web_input_event_traits.h"
#include "content/common/input_messages.h"
-#include "content/common/view_messages.h"
#include "ipc/ipc_sender.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "testing/perf/perf_test.h"
@@ -246,7 +245,7 @@ class InputRouterImplPerfTest : public testing::Test {
void OnHasTouchEventHandlers(bool has_handlers) {
input_router_->OnMessageReceived(
- ViewHostMsg_HasTouchEventHandlers(0, has_handlers));
+ InputHostMsg_HasTouchEventHandlers(0, has_handlers));
}
size_t GetAndResetSentEventCount() {

Powered by Google App Engine
This is Rietveld 408576698