| Index: Source/core/frame/RemoteFrameClient.h
|
| diff --git a/Source/core/frame/RemoteFrameClient.h b/Source/core/frame/RemoteFrameClient.h
|
| index 18a7f7c1eb26619324c752071ca18faa0399da5d..c162882734cf1d441754bbef7ebc215a1e7182ba 100644
|
| --- a/Source/core/frame/RemoteFrameClient.h
|
| +++ b/Source/core/frame/RemoteFrameClient.h
|
| @@ -9,6 +9,7 @@
|
|
|
| namespace blink {
|
|
|
| +class Event;
|
| class ResourceRequest;
|
|
|
| class RemoteFrameClient : public FrameClient {
|
| @@ -16,6 +17,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
|
|
|