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

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

Issue 12211149: Revert 182106 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/public/renderer/render_view.h ('k') | content/renderer/gpu/render_widget_compositor.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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"
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 virtual void PrintPage(WebKit::WebFrame* frame, bool user_initiated) {} 78 virtual void PrintPage(WebKit::WebFrame* frame, bool user_initiated) {}
79 virtual void FocusedNodeChanged(const WebKit::WebNode& node) {} 79 virtual void FocusedNodeChanged(const WebKit::WebNode& node) {}
80 virtual void WillCreateMediaPlayer(WebKit::WebFrame* frame, 80 virtual void WillCreateMediaPlayer(WebKit::WebFrame* frame,
81 WebKit::WebMediaPlayerClient* client) {} 81 WebKit::WebMediaPlayerClient* client) {}
82 virtual void ZoomLevelChanged() {}; 82 virtual void ZoomLevelChanged() {};
83 virtual void DidChangeScrollOffset(WebKit::WebFrame* frame) {} 83 virtual void DidChangeScrollOffset(WebKit::WebFrame* frame) {}
84 virtual void DraggableRegionsChanged(WebKit::WebFrame* frame) {} 84 virtual void DraggableRegionsChanged(WebKit::WebFrame* frame) {}
85 virtual void DidRequestShowContextMenu( 85 virtual void DidRequestShowContextMenu(
86 WebKit::WebFrame* frame, 86 WebKit::WebFrame* frame,
87 const WebKit::WebContextMenuData& data) {} 87 const WebKit::WebContextMenuData& data) {}
88 virtual void DidCommitCompositorFrame() {}
89 88
90 // These match the RenderView methods. 89 // These match the RenderView methods.
91 virtual void DidHandleMouseEvent(const WebKit::WebMouseEvent& event) {} 90 virtual void DidHandleMouseEvent(const WebKit::WebMouseEvent& event) {}
92 virtual void DidHandleTouchEvent(const WebKit::WebTouchEvent& event) {} 91 virtual void DidHandleTouchEvent(const WebKit::WebTouchEvent& event) {}
93 virtual void DidHandleGestureEvent(const WebKit::WebGestureEvent& event) {} 92 virtual void DidHandleGestureEvent(const WebKit::WebGestureEvent& event) {}
94 virtual void DidCreatePepperPlugin(RendererPpapiHost* host) {} 93 virtual void DidCreatePepperPlugin(RendererPpapiHost* host) {}
95 94
96 // These match incoming IPCs. 95 // These match incoming IPCs.
97 virtual void Navigate(const GURL& url) {} 96 virtual void Navigate(const GURL& url) {}
98 virtual void ClosePage() {} 97 virtual void ClosePage() {}
(...skipping 21 matching lines...) Expand all
120 RenderView* render_view_; 119 RenderView* render_view_;
121 // The routing ID of the associated RenderView. 120 // The routing ID of the associated RenderView.
122 int routing_id_; 121 int routing_id_;
123 122
124 DISALLOW_COPY_AND_ASSIGN(RenderViewObserver); 123 DISALLOW_COPY_AND_ASSIGN(RenderViewObserver);
125 }; 124 };
126 125
127 } // namespace content 126 } // namespace content
128 127
129 #endif // CONTENT_PUBLIC_RENDERER_RENDER_VIEW_OBSERVER_H_ 128 #endif // CONTENT_PUBLIC_RENDERER_RENDER_VIEW_OBSERVER_H_
OLDNEW
« no previous file with comments | « content/public/renderer/render_view.h ('k') | content/renderer/gpu/render_widget_compositor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698