| 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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 virtual blink::WebLayerTreeView* layerTreeView(); | 169 virtual blink::WebLayerTreeView* layerTreeView(); |
| 170 virtual void didBecomeReadyForAdditionalInput(); | 170 virtual void didBecomeReadyForAdditionalInput(); |
| 171 virtual void didCommitAndDrawCompositorFrame(); | 171 virtual void didCommitAndDrawCompositorFrame(); |
| 172 virtual void didCompleteSwapBuffers(); | 172 virtual void didCompleteSwapBuffers(); |
| 173 virtual void scheduleComposite(); | 173 virtual void scheduleComposite(); |
| 174 virtual void didFocus(); | 174 virtual void didFocus(); |
| 175 virtual void didBlur(); | 175 virtual void didBlur(); |
| 176 virtual void didChangeCursor(const blink::WebCursorInfo&); | 176 virtual void didChangeCursor(const blink::WebCursorInfo&); |
| 177 virtual void closeWidgetSoon(); | 177 virtual void closeWidgetSoon(); |
| 178 virtual void show(blink::WebNavigationPolicy); | 178 virtual void show(blink::WebNavigationPolicy); |
| 179 virtual void runModal() {} | |
| 180 virtual blink::WebRect windowRect(); | 179 virtual blink::WebRect windowRect(); |
| 181 virtual void setToolTipText(const blink::WebString& text, | 180 virtual void setToolTipText(const blink::WebString& text, |
| 182 blink::WebTextDirection hint); | 181 blink::WebTextDirection hint); |
| 183 virtual void setWindowRect(const blink::WebRect&); | 182 virtual void setWindowRect(const blink::WebRect&); |
| 184 virtual blink::WebRect windowResizerRect(); | 183 virtual blink::WebRect windowResizerRect(); |
| 185 virtual blink::WebRect rootWindowRect(); | 184 virtual blink::WebRect rootWindowRect(); |
| 186 virtual blink::WebScreenInfo screenInfo(); | 185 virtual blink::WebScreenInfo screenInfo(); |
| 187 virtual float deviceScaleFactor(); | 186 virtual float deviceScaleFactor(); |
| 188 virtual void resetInputMethod(); | 187 virtual void resetInputMethod(); |
| 189 virtual void didHandleGestureEvent(const blink::WebGestureEvent& event, | 188 virtual void didHandleGestureEvent(const blink::WebGestureEvent& event, |
| (...skipping 615 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 805 ui::MenuSourceType context_menu_source_type_; | 804 ui::MenuSourceType context_menu_source_type_; |
| 806 bool has_host_context_menu_location_; | 805 bool has_host_context_menu_location_; |
| 807 gfx::Point host_context_menu_location_; | 806 gfx::Point host_context_menu_location_; |
| 808 | 807 |
| 809 DISALLOW_COPY_AND_ASSIGN(RenderWidget); | 808 DISALLOW_COPY_AND_ASSIGN(RenderWidget); |
| 810 }; | 809 }; |
| 811 | 810 |
| 812 } // namespace content | 811 } // namespace content |
| 813 | 812 |
| 814 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ | 813 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ |
| OLD | NEW |