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

Side by Side Diff: content/public/renderer/render_view_observer.h

Issue 11622009: Forward Webkit Gesture events to interested RenderViewObservers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_PUBLIC_RENDERER_RENDER_VIEW_OBSERVER_H_ 5 #ifndef CONTENT_PUBLIC_RENDERER_RENDER_VIEW_OBSERVER_H_
6 #define CONTENT_PUBLIC_RENDERER_RENDER_VIEW_OBSERVER_H_ 6 #define CONTENT_PUBLIC_RENDERER_RENDER_VIEW_OBSERVER_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
11 #include "ipc/ipc_listener.h" 11 #include "ipc/ipc_listener.h"
12 #include "ipc/ipc_sender.h" 12 #include "ipc/ipc_sender.h"
13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIconURL.h" 13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIconURL.h"
14 14
15 namespace ppapi { 15 namespace ppapi {
16 namespace host { 16 namespace host {
17 class PpapiHost; 17 class PpapiHost;
18 } 18 }
19 } 19 }
20 20
21 namespace WebKit { 21 namespace WebKit {
22 class WebDataSource; 22 class WebDataSource;
23 class WebFrame; 23 class WebFrame;
24 class WebFormElement; 24 class WebFormElement;
25 class WebGestureEvent;
25 class WebMediaPlayerClient; 26 class WebMediaPlayerClient;
26 class WebMouseEvent; 27 class WebMouseEvent;
27 class WebNode; 28 class WebNode;
28 class WebTouchEvent; 29 class WebTouchEvent;
29 class WebURL; 30 class WebURL;
30 struct WebContextMenuData; 31 struct WebContextMenuData;
31 struct WebURLError; 32 struct WebURLError;
32 } 33 }
33 34
34 namespace content { 35 namespace content {
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 virtual void DidChangeScrollOffset(WebKit::WebFrame* frame) {} 83 virtual void DidChangeScrollOffset(WebKit::WebFrame* frame) {}
83 virtual void DraggableRegionsChanged(WebKit::WebFrame* frame) {} 84 virtual void DraggableRegionsChanged(WebKit::WebFrame* frame) {}
84 virtual void DidRequestShowContextMenu( 85 virtual void DidRequestShowContextMenu(
85 WebKit::WebFrame* frame, 86 WebKit::WebFrame* frame,
86 const WebKit::WebContextMenuData& data) {} 87 const WebKit::WebContextMenuData& data) {}
87 88
88 // These match the RenderView methods. 89 // These match the RenderView methods.
89 virtual void DidHandleMouseEvent(const WebKit::WebMouseEvent& event) {} 90 virtual void DidHandleMouseEvent(const WebKit::WebMouseEvent& event) {}
90 virtual void DidHandleTouchEvent(const WebKit::WebTouchEvent& event) {} 91 virtual void DidHandleTouchEvent(const WebKit::WebTouchEvent& event) {}
91 virtual void DidCreatePepperPlugin(RendererPpapiHost* host) {} 92 virtual void DidCreatePepperPlugin(RendererPpapiHost* host) {}
93 virtual void DidHandleGestureEvent(const WebKit::WebGestureEvent& event) {}
jam 2012/12/17 22:51:09 nit: i'd move this up one line to match the other
ananta 2012/12/17 22:59:06 Done.
92 94
93 // These match incoming IPCs. 95 // These match incoming IPCs.
94 virtual void Navigate(const GURL& url) {} 96 virtual void Navigate(const GURL& url) {}
95 virtual void ClosePage() {} 97 virtual void ClosePage() {}
96 98
97 // IPC::Listener implementation. 99 // IPC::Listener implementation.
98 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; 100 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
99 101
100 protected: 102 protected:
101 explicit RenderViewObserver(RenderView* render_view); 103 explicit RenderViewObserver(RenderView* render_view);
(...skipping 15 matching lines...) Expand all
117 RenderView* render_view_; 119 RenderView* render_view_;
118 // The routing ID of the associated RenderView. 120 // The routing ID of the associated RenderView.
119 int routing_id_; 121 int routing_id_;
120 122
121 DISALLOW_COPY_AND_ASSIGN(RenderViewObserver); 123 DISALLOW_COPY_AND_ASSIGN(RenderViewObserver);
122 }; 124 };
123 125
124 } // namespace content 126 } // namespace content
125 127
126 #endif // CONTENT_PUBLIC_RENDERER_RENDER_VIEW_OBSERVER_H_ 128 #endif // CONTENT_PUBLIC_RENDERER_RENDER_VIEW_OBSERVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698