Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(339)

Side by Side Diff: content/browser/renderer_host/render_widget_host_impl.h

Issue 12038037: Replace the misspelled range within a selection to correct spelling. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « chrome/browser/tab_contents/spelling_menu_observer.cc ('k') | content/browser/renderer_host/render_widget_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698