| 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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 | 165 |
| 166 // IPC::Sender | 166 // IPC::Sender |
| 167 bool Send(IPC::Message* msg) override; | 167 bool Send(IPC::Message* msg) override; |
| 168 | 168 |
| 169 // blink::WebWidgetClient | 169 // blink::WebWidgetClient |
| 170 void didAutoResize(const blink::WebSize& new_size) override; | 170 void didAutoResize(const blink::WebSize& new_size) override; |
| 171 void initializeLayerTreeView() override; | 171 void initializeLayerTreeView() override; |
| 172 blink::WebLayerTreeView* layerTreeView() override; | 172 blink::WebLayerTreeView* layerTreeView() override; |
| 173 void didFirstVisuallyNonEmptyLayout() override; | 173 void didFirstVisuallyNonEmptyLayout() override; |
| 174 void didFirstLayoutAfterFinishedParsing() override; | 174 void didFirstLayoutAfterFinishedParsing() override; |
| 175 void didFirstPaintAfterLoad() override; |
| 175 void didFocus() override; | 176 void didFocus() override; |
| 176 void didBlur() override; | 177 void didBlur() override; |
| 177 void didChangeCursor(const blink::WebCursorInfo&) override; | 178 void didChangeCursor(const blink::WebCursorInfo&) override; |
| 178 void closeWidgetSoon() override; | 179 void closeWidgetSoon() override; |
| 179 void show(blink::WebNavigationPolicy) override; | 180 void show(blink::WebNavigationPolicy) override; |
| 180 blink::WebRect windowRect() override; | 181 blink::WebRect windowRect() override; |
| 181 void setToolTipText(const blink::WebString& text, | 182 void setToolTipText(const blink::WebString& text, |
| 182 blink::WebTextDirection hint) override; | 183 blink::WebTextDirection hint) override; |
| 183 void setWindowRect(const blink::WebRect&) override; | 184 void setWindowRect(const blink::WebRect&) override; |
| 184 blink::WebRect windowResizerRect() override; | 185 blink::WebRect windowResizerRect() override; |
| (...skipping 616 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 801 ui::MenuSourceType context_menu_source_type_; | 802 ui::MenuSourceType context_menu_source_type_; |
| 802 bool has_host_context_menu_location_; | 803 bool has_host_context_menu_location_; |
| 803 gfx::Point host_context_menu_location_; | 804 gfx::Point host_context_menu_location_; |
| 804 | 805 |
| 805 DISALLOW_COPY_AND_ASSIGN(RenderWidget); | 806 DISALLOW_COPY_AND_ASSIGN(RenderWidget); |
| 806 }; | 807 }; |
| 807 | 808 |
| 808 } // namespace content | 809 } // namespace content |
| 809 | 810 |
| 810 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ | 811 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ |
| OLD | NEW |