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

Unified Diff: content/common/input/input_event_ack.cc

Issue 281723010: Bundle DidOverscrollParams with the InputEventAck (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix browser tests Created 6 years, 7 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/common/input/input_event_ack.cc
diff --git a/content/browser/frame_host/navigator_delegate.cc b/content/common/input/input_event_ack.cc
similarity index 51%
copy from content/browser/frame_host/navigator_delegate.cc
copy to content/common/input/input_event_ack.cc
index 4685c7ae1831f763e70e4b64e1dfe1566bab872c..fc4c3f17f162c19d47ba2ed72d3dff099d4728f1 100644
--- a/content/browser/frame_host/navigator_delegate.cc
+++ b/content/common/input/input_event_ack.cc
@@ -2,16 +2,16 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "content/browser/frame_host/navigator_delegate.h"
+#include "content/common/input/input_event_ack.h"
namespace content {
-bool NavigatorDelegate::CanOverscrollContent() {
- return false;
+InputEventAck::InputEventAck()
+ : type(blink::WebInputEvent::Undefined),
+ state(INPUT_EVENT_ACK_STATE_UNKNOWN) {
}
-bool NavigatorDelegate::ShouldPreserveAbortedURLs() {
- return false;
+InputEventAck::~InputEventAck() {
}
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698