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

Unified Diff: Source/core/frame/RemoteFrameClient.h

Issue 642823006: Move forwardInputEvent to RemoteFrameClient. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Minor changes Created 6 years, 2 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: Source/core/frame/RemoteFrameClient.h
diff --git a/Source/core/frame/RemoteFrameClient.h b/Source/core/frame/RemoteFrameClient.h
index 18a7f7c1eb26619324c752071ca18faa0399da5d..cd5203047b4fce91fb587de36c2a0b92d207aba4 100644
--- a/Source/core/frame/RemoteFrameClient.h
+++ b/Source/core/frame/RemoteFrameClient.h
@@ -9,6 +9,8 @@
namespace blink {
+class Event;
+class Frame;
Nate Chapin 2014/10/16 19:18:43 I wouldn't have thought this forward declaration w
Charlie Reis 2014/10/16 20:09:02 Woops, put that one in when Frame was still in the
class ResourceRequest;
class RemoteFrameClient : public FrameClient {
@@ -16,6 +18,10 @@ public:
virtual ~RemoteFrameClient() { }
virtual void navigate(const ResourceRequest&, bool shouldReplaceCurrentEntry) = 0;
+
+ // FIXME: Remove this method once we have input routing in the browser
+ // process. See http://crbug.com/339659.
+ virtual void forwardInputEvent(Event*) = 0;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698