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

Unified Diff: trunk/src/content/browser/renderer_host/input/synthetic_gesture_target_base.cc

Issue 79143002: Revert 236254 "Replace old with new synthetic gesture framework." (Closed) Base URL: svn://svn.chromium.org/chrome/
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 side-by-side diff with in-line comments
Download patch
Index: trunk/src/content/browser/renderer_host/input/synthetic_gesture_target_base.cc
===================================================================
--- trunk/src/content/browser/renderer_host/input/synthetic_gesture_target_base.cc (revision 236262)
+++ trunk/src/content/browser/renderer_host/input/synthetic_gesture_target_base.cc (working copy)
@@ -8,7 +8,6 @@
#include "content/browser/renderer_host/render_widget_host_view_base.h"
#include "content/browser/renderer_host/ui_events_helper.h"
#include "content/common/input/input_event.h"
-#include "content/common/input_messages.h"
#include "third_party/WebKit/public/web/WebInputEvent.h"
#include "ui/events/event.h"
#include "ui/events/latency_info.h"
@@ -23,7 +22,6 @@
SyntheticGestureTargetBase::SyntheticGestureTargetBase(
RenderWidgetHostImpl* host)
: host_(host) {
- DCHECK(host);
}
SyntheticGestureTargetBase::~SyntheticGestureTargetBase() {
@@ -79,8 +77,7 @@
}
void SyntheticGestureTargetBase::OnSyntheticGestureCompleted(
- SyntheticGesture::Result result) {
- host_->Send(new InputMsg_SyntheticGestureCompleted(host_->GetRoutingID()));
+ SyntheticGestureNew::Result result) {
}
void SyntheticGestureTargetBase::SetNeedsFlush() {

Powered by Google App Engine
This is Rietveld 408576698