Index: public/web/WebRemoteFrameClient.h |
diff --git a/public/web/WebRemoteFrameClient.h b/public/web/WebRemoteFrameClient.h |
index 6bbd42d67daf0b4ef7d3447fcba372bc03f9aa7e..6baf7524efd0d2b522176736edf18b7b20e07b63 100644 |
--- a/public/web/WebRemoteFrameClient.h |
+++ b/public/web/WebRemoteFrameClient.h |
@@ -9,6 +9,7 @@ |
#include "public/web/WebSecurityOrigin.h" |
namespace blink { |
+class WebInputEvent; |
class WebLocalFrame; |
class WebRemoteFrame; |
@@ -33,6 +34,10 @@ public: |
// A remote frame was asked to start a navigation. |
virtual void navigate(const WebURLRequest& request, bool shouldReplaceCurrentEntry) { } |
+ |
+ // FIXME: Remove this method once we have input routing in the browser |
+ // process. See http://crbug.com/339659. |
+ virtual void forwardInputEvent(const WebInputEvent*) { } |
}; |
} // namespace blink |