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_RENDERER_RENDER_WIDGET_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_WIDGET_H_ |
6 #define CONTENT_RENDERER_RENDER_WIDGET_H_ | 6 #define CONTENT_RENDERER_RENDER_WIDGET_H_ |
7 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include <map> | 9 #include <map> |
10 | 10 |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 // IPC::Sender | 119 // IPC::Sender |
120 virtual bool Send(IPC::Message* msg) OVERRIDE; | 120 virtual bool Send(IPC::Message* msg) OVERRIDE; |
121 | 121 |
122 // blink::WebWidgetClient | 122 // blink::WebWidgetClient |
123 virtual void suppressCompositorScheduling(bool enable); | 123 virtual void suppressCompositorScheduling(bool enable); |
124 virtual void willBeginCompositorFrame(); | 124 virtual void willBeginCompositorFrame(); |
125 virtual void didInvalidateRect(const blink::WebRect&); | 125 virtual void didInvalidateRect(const blink::WebRect&); |
126 virtual void didScrollRect(int dx, int dy, | 126 virtual void didScrollRect(int dx, int dy, |
127 const blink::WebRect& clipRect); | 127 const blink::WebRect& clipRect); |
128 virtual void didAutoResize(const blink::WebSize& new_size); | 128 virtual void didAutoResize(const blink::WebSize& new_size); |
129 virtual void didActivateCompositor(int input_handler_identifier); | 129 virtual void didActivateCompositor(); |
130 virtual void didDeactivateCompositor(); | 130 virtual void didDeactivateCompositor(); |
131 virtual void initializeLayerTreeView(); | 131 virtual void initializeLayerTreeView(); |
132 virtual blink::WebLayerTreeView* layerTreeView(); | 132 virtual blink::WebLayerTreeView* layerTreeView(); |
133 virtual void didBecomeReadyForAdditionalInput(); | 133 virtual void didBecomeReadyForAdditionalInput(); |
134 virtual void didCommitAndDrawCompositorFrame(); | 134 virtual void didCommitAndDrawCompositorFrame(); |
135 virtual void didCompleteSwapBuffers(); | 135 virtual void didCompleteSwapBuffers(); |
136 virtual void scheduleComposite(); | 136 virtual void scheduleComposite(); |
137 virtual void scheduleAnimation(); | 137 virtual void scheduleAnimation(); |
138 virtual void didFocus(); | 138 virtual void didFocus(); |
139 virtual void didBlur(); | 139 virtual void didBlur(); |
(...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
789 float popup_origin_scale_for_emulation_; | 789 float popup_origin_scale_for_emulation_; |
790 | 790 |
791 scoped_ptr<ResizingModeSelector> resizing_mode_selector_; | 791 scoped_ptr<ResizingModeSelector> resizing_mode_selector_; |
792 | 792 |
793 DISALLOW_COPY_AND_ASSIGN(RenderWidget); | 793 DISALLOW_COPY_AND_ASSIGN(RenderWidget); |
794 }; | 794 }; |
795 | 795 |
796 } // namespace content | 796 } // namespace content |
797 | 797 |
798 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ | 798 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ |
OLD | NEW |