| 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 virtual void didBecomeReadyForAdditionalInput(); | 137 virtual void didBecomeReadyForAdditionalInput(); |
| 138 virtual void didCommitAndDrawCompositorFrame(); | 138 virtual void didCommitAndDrawCompositorFrame(); |
| 139 virtual void didCompleteSwapBuffers(); | 139 virtual void didCompleteSwapBuffers(); |
| 140 virtual void scheduleComposite(); | 140 virtual void scheduleComposite(); |
| 141 virtual void scheduleAnimation(); | 141 virtual void scheduleAnimation(); |
| 142 virtual void didFocus(); | 142 virtual void didFocus(); |
| 143 virtual void didBlur(); | 143 virtual void didBlur(); |
| 144 virtual void didChangeCursor(const blink::WebCursorInfo&); | 144 virtual void didChangeCursor(const blink::WebCursorInfo&); |
| 145 virtual void closeWidgetSoon(); | 145 virtual void closeWidgetSoon(); |
| 146 virtual void show(blink::WebNavigationPolicy); | 146 virtual void show(blink::WebNavigationPolicy); |
| 147 virtual void runModal() {} | |
| 148 virtual blink::WebRect windowRect(); | 147 virtual blink::WebRect windowRect(); |
| 149 virtual void setToolTipText(const blink::WebString& text, | 148 virtual void setToolTipText(const blink::WebString& text, |
| 150 blink::WebTextDirection hint); | 149 blink::WebTextDirection hint); |
| 151 virtual void setWindowRect(const blink::WebRect&); | 150 virtual void setWindowRect(const blink::WebRect&); |
| 152 virtual blink::WebRect windowResizerRect(); | 151 virtual blink::WebRect windowResizerRect(); |
| 153 virtual blink::WebRect rootWindowRect(); | 152 virtual blink::WebRect rootWindowRect(); |
| 154 virtual blink::WebScreenInfo screenInfo(); | 153 virtual blink::WebScreenInfo screenInfo(); |
| 155 virtual float deviceScaleFactor(); | 154 virtual float deviceScaleFactor(); |
| 156 virtual void resetInputMethod(); | 155 virtual void resetInputMethod(); |
| 157 virtual void didHandleGestureEvent(const blink::WebGestureEvent& event, | 156 virtual void didHandleGestureEvent(const blink::WebGestureEvent& event, |
| (...skipping 627 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 785 | 784 |
| 786 ui::MenuSourceType context_menu_source_type_; | 785 ui::MenuSourceType context_menu_source_type_; |
| 787 gfx::Point touch_editing_context_menu_location_; | 786 gfx::Point touch_editing_context_menu_location_; |
| 788 | 787 |
| 789 DISALLOW_COPY_AND_ASSIGN(RenderWidget); | 788 DISALLOW_COPY_AND_ASSIGN(RenderWidget); |
| 790 }; | 789 }; |
| 791 | 790 |
| 792 } // namespace content | 791 } // namespace content |
| 793 | 792 |
| 794 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ | 793 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ |
| OLD | NEW |