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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorInputAgent.h

Issue 2474743002: [DevTools] migrate DOMDebugger, Input, DeviceOrientation, Tracing to new style (Closed)
Patch Set: rebased Created 4 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: third_party/WebKit/Source/core/inspector/InspectorInputAgent.h
diff --git a/third_party/WebKit/Source/core/inspector/InspectorInputAgent.h b/third_party/WebKit/Source/core/inspector/InspectorInputAgent.h
index 5f29a8ca2d819bdd6c9106bcd90abcc9a36e5411..3917428b6fae37bcdab2a1253bf1de328f2c4535 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorInputAgent.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorInputAgent.h
@@ -53,12 +53,11 @@ class CORE_EXPORT InspectorInputAgent final
DECLARE_VIRTUAL_TRACE();
// Methods called from the frontend for simulating input.
- void dispatchTouchEvent(
- ErrorString*,
+ Response dispatchTouchEvent(
const String& type,
std::unique_ptr<protocol::Array<protocol::Input::TouchPoint>> touchPoints,
- const Maybe<int>& modifiers,
- const Maybe<double>& timestamp) override;
+ Maybe<int> modifiers,
+ Maybe<double> timestamp) override;
private:
explicit InspectorInputAgent(InspectedFrames*);

Powered by Google App Engine
This is Rietveld 408576698