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_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
7 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include <list> | 9 #include <list> |
10 #include <map> | 10 #include <map> |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 virtual RenderProcessHost* GetProcess() const OVERRIDE; | 129 virtual RenderProcessHost* GetProcess() const OVERRIDE; |
130 virtual int GetRoutingID() const OVERRIDE; | 130 virtual int GetRoutingID() const OVERRIDE; |
131 virtual RenderWidgetHostView* GetView() const OVERRIDE; | 131 virtual RenderWidgetHostView* GetView() const OVERRIDE; |
132 virtual bool IsLoading() const OVERRIDE; | 132 virtual bool IsLoading() const OVERRIDE; |
133 virtual bool IsRenderView() const OVERRIDE; | 133 virtual bool IsRenderView() const OVERRIDE; |
134 virtual void PaintAtSize(TransportDIB::Handle dib_handle, | 134 virtual void PaintAtSize(TransportDIB::Handle dib_handle, |
135 int tag, | 135 int tag, |
136 const gfx::Size& page_size, | 136 const gfx::Size& page_size, |
137 const gfx::Size& desired_size) OVERRIDE; | 137 const gfx::Size& desired_size) OVERRIDE; |
138 virtual void Replace(const string16& word) OVERRIDE; | 138 virtual void Replace(const string16& word) OVERRIDE; |
| 139 virtual void ReplaceMisspelling(const string16& word) OVERRIDE; |
139 virtual void ResizeRectChanged(const gfx::Rect& new_rect) OVERRIDE; | 140 virtual void ResizeRectChanged(const gfx::Rect& new_rect) OVERRIDE; |
140 virtual void RestartHangMonitorTimeout() OVERRIDE; | 141 virtual void RestartHangMonitorTimeout() OVERRIDE; |
141 virtual void SetIgnoreInputEvents(bool ignore_input_events) OVERRIDE; | 142 virtual void SetIgnoreInputEvents(bool ignore_input_events) OVERRIDE; |
142 virtual void Stop() OVERRIDE; | 143 virtual void Stop() OVERRIDE; |
143 virtual void WasResized() OVERRIDE; | 144 virtual void WasResized() OVERRIDE; |
144 virtual void AddKeyboardListener(KeyboardListener* listener) OVERRIDE; | 145 virtual void AddKeyboardListener(KeyboardListener* listener) OVERRIDE; |
145 virtual void RemoveKeyboardListener(KeyboardListener* listener) OVERRIDE; | 146 virtual void RemoveKeyboardListener(KeyboardListener* listener) OVERRIDE; |
146 | 147 |
147 // Notification that the screen info has changed. | 148 // Notification that the screen info has changed. |
148 void NotifyScreenInfoChanged(); | 149 void NotifyScreenInfoChanged(); |
(...skipping 729 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
878 #if defined(OS_WIN) | 879 #if defined(OS_WIN) |
879 std::list<HWND> dummy_windows_for_activation_; | 880 std::list<HWND> dummy_windows_for_activation_; |
880 #endif | 881 #endif |
881 | 882 |
882 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); | 883 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); |
883 }; | 884 }; |
884 | 885 |
885 } // namespace content | 886 } // namespace content |
886 | 887 |
887 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 888 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
OLD | NEW |