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 <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
229 void SetScreenMetricsEmulationParameters( | 229 void SetScreenMetricsEmulationParameters( |
230 bool enabled, | 230 bool enabled, |
231 const blink::WebDeviceEmulationParams& params) override; | 231 const blink::WebDeviceEmulationParams& params) override; |
232 void SetScreenRects(const gfx::Rect& view_screen_rect, | 232 void SetScreenRects(const gfx::Rect& view_screen_rect, |
233 const gfx::Rect& window_screen_rect) override; | 233 const gfx::Rect& window_screen_rect) override; |
234 | 234 |
235 // blink::WebWidgetClient | 235 // blink::WebWidgetClient |
236 void initializeLayerTreeView() override; | 236 void initializeLayerTreeView() override; |
237 blink::WebLayerTreeView* layerTreeView() override; | 237 blink::WebLayerTreeView* layerTreeView() override; |
238 void didMeaningfulLayout(blink::WebMeaningfulLayout layout_type) override; | 238 void didMeaningfulLayout(blink::WebMeaningfulLayout layout_type) override; |
239 void didFocus() override; | |
240 void didChangeCursor(const blink::WebCursorInfo&) override; | 239 void didChangeCursor(const blink::WebCursorInfo&) override; |
241 void closeWidgetSoon() override; | 240 void closeWidgetSoon() override; |
242 void show(blink::WebNavigationPolicy) override; | 241 void show(blink::WebNavigationPolicy) override; |
243 blink::WebRect windowRect() override; | 242 blink::WebRect windowRect() override; |
244 void setToolTipText(const blink::WebString& text, | 243 void setToolTipText(const blink::WebString& text, |
245 blink::WebTextDirection hint) override; | 244 blink::WebTextDirection hint) override; |
246 void setWindowRect(const blink::WebRect&) override; | 245 void setWindowRect(const blink::WebRect&) override; |
247 blink::WebRect windowResizerRect() override; | 246 blink::WebRect windowResizerRect() override; |
248 blink::WebScreenInfo screenInfo() override; | 247 blink::WebScreenInfo screenInfo() override; |
249 void resetInputMethod() override; | 248 void resetInputMethod() override; |
(...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
782 // This reference is set by the RenderFrame and is used to query the IME- | 781 // This reference is set by the RenderFrame and is used to query the IME- |
783 // related state from the plugin to later send to the browser. | 782 // related state from the plugin to later send to the browser. |
784 PepperPluginInstanceImpl* focused_pepper_plugin_; | 783 PepperPluginInstanceImpl* focused_pepper_plugin_; |
785 | 784 |
786 DISALLOW_COPY_AND_ASSIGN(RenderWidget); | 785 DISALLOW_COPY_AND_ASSIGN(RenderWidget); |
787 }; | 786 }; |
788 | 787 |
789 } // namespace content | 788 } // namespace content |
790 | 789 |
791 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ | 790 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ |
OLD | NEW |