OLD | NEW |
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/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/macros.h" | 9 #include "base/macros.h" |
10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 virtual void DidFailProvisionalLoad(blink::WebLocalFrame* frame, | 47 virtual void DidFailProvisionalLoad(blink::WebLocalFrame* frame, |
48 const blink::WebURLError& error) {} | 48 const blink::WebURLError& error) {} |
49 virtual void DidCommitProvisionalLoad(blink::WebLocalFrame* frame, | 49 virtual void DidCommitProvisionalLoad(blink::WebLocalFrame* frame, |
50 bool is_new_navigation) {} | 50 bool is_new_navigation) {} |
51 virtual void DidCreateNewDocument(blink::WebLocalFrame* frame) {} | 51 virtual void DidCreateNewDocument(blink::WebLocalFrame* frame) {} |
52 virtual void DidClearWindowObject(blink::WebLocalFrame* frame) {} | 52 virtual void DidClearWindowObject(blink::WebLocalFrame* frame) {} |
53 virtual void DidCreateDocumentElement(blink::WebLocalFrame* frame) {} | 53 virtual void DidCreateDocumentElement(blink::WebLocalFrame* frame) {} |
54 virtual void FrameCreated(blink::WebLocalFrame* parent, | 54 virtual void FrameCreated(blink::WebLocalFrame* parent, |
55 blink::WebFrame* frame) {} | 55 blink::WebFrame* frame) {} |
56 virtual void FrameDetached(blink::WebFrame* frame) {} | 56 virtual void FrameDetached(blink::WebFrame* frame) {} |
| 57 virtual void PrintPage(blink::WebLocalFrame* frame, bool user_initiated) {} |
57 virtual void FocusedNodeChanged(const blink::WebNode& node) {} | 58 virtual void FocusedNodeChanged(const blink::WebNode& node) {} |
58 virtual void DraggableRegionsChanged(blink::WebFrame* frame) {} | 59 virtual void DraggableRegionsChanged(blink::WebFrame* frame) {} |
59 virtual void DidCommitCompositorFrame() {} | 60 virtual void DidCommitCompositorFrame() {} |
60 virtual void DidUpdateLayout() {} | 61 virtual void DidUpdateLayout() {} |
61 | 62 |
62 // These match the RenderView methods. | 63 // These match the RenderView methods. |
63 virtual void DidHandleGestureEvent(const blink::WebGestureEvent& event) {} | 64 virtual void DidHandleGestureEvent(const blink::WebGestureEvent& event) {} |
64 | 65 |
65 virtual void OnMouseDown(const blink::WebNode& mouse_down_node) {} | 66 virtual void OnMouseDown(const blink::WebNode& mouse_down_node) {} |
66 | 67 |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 RenderViewImpl* render_view_; | 106 RenderViewImpl* render_view_; |
106 // The routing ID of the associated RenderView. | 107 // The routing ID of the associated RenderView. |
107 int routing_id_; | 108 int routing_id_; |
108 | 109 |
109 DISALLOW_COPY_AND_ASSIGN(RenderViewObserver); | 110 DISALLOW_COPY_AND_ASSIGN(RenderViewObserver); |
110 }; | 111 }; |
111 | 112 |
112 } // namespace content | 113 } // namespace content |
113 | 114 |
114 #endif // CONTENT_PUBLIC_RENDERER_RENDER_VIEW_OBSERVER_H_ | 115 #endif // CONTENT_PUBLIC_RENDERER_RENDER_VIEW_OBSERVER_H_ |
OLD | NEW |