| 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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 // IPC::Listener | 163 // IPC::Listener |
| 164 bool OnMessageReceived(const IPC::Message& msg) override; | 164 bool OnMessageReceived(const IPC::Message& msg) override; |
| 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 didMeaningfulLayout(blink::WebMeaningfulLayout layout_type) override; |
| 174 void didFirstLayoutAfterFinishedParsing() override; | |
| 175 void didFocus() override; | 174 void didFocus() override; |
| 176 void didBlur() override; | 175 void didBlur() override; |
| 177 void didChangeCursor(const blink::WebCursorInfo&) override; | 176 void didChangeCursor(const blink::WebCursorInfo&) override; |
| 178 void closeWidgetSoon() override; | 177 void closeWidgetSoon() override; |
| 179 void show(blink::WebNavigationPolicy) override; | 178 void show(blink::WebNavigationPolicy) override; |
| 180 blink::WebRect windowRect() override; | 179 blink::WebRect windowRect() override; |
| 181 void setToolTipText(const blink::WebString& text, | 180 void setToolTipText(const blink::WebString& text, |
| 182 blink::WebTextDirection hint) override; | 181 blink::WebTextDirection hint) override; |
| 183 void setWindowRect(const blink::WebRect&) override; | 182 void setWindowRect(const blink::WebRect&) override; |
| 184 blink::WebRect windowResizerRect() override; | 183 blink::WebRect windowResizerRect() override; |
| (...skipping 610 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 795 ui::MenuSourceType context_menu_source_type_; | 794 ui::MenuSourceType context_menu_source_type_; |
| 796 bool has_host_context_menu_location_; | 795 bool has_host_context_menu_location_; |
| 797 gfx::Point host_context_menu_location_; | 796 gfx::Point host_context_menu_location_; |
| 798 | 797 |
| 799 DISALLOW_COPY_AND_ASSIGN(RenderWidget); | 798 DISALLOW_COPY_AND_ASSIGN(RenderWidget); |
| 800 }; | 799 }; |
| 801 | 800 |
| 802 } // namespace content | 801 } // namespace content |
| 803 | 802 |
| 804 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ | 803 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ |
| OLD | NEW |