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

Side by Side Diff: content/renderer/render_view_impl.h

Issue 8907016: Spellchecker should recheck after changing language. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Patch Created 8 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 | Annotate | Revision Log
« no previous file with comments | « content/common/view_messages.h ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_RENDERER_RENDER_VIEW_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
7 #pragma once 7 #pragma once
8 8
9 #include <deque> 9 #include <deque>
10 #include <map> 10 #include <map>
(...skipping 845 matching lines...) Expand 10 before | Expand all | Expand 10 after
856 #if defined(OS_MACOSX) 856 #if defined(OS_MACOSX)
857 void OnSetWindowVisibility(bool visible); 857 void OnSetWindowVisibility(bool visible);
858 #endif 858 #endif
859 void OnSetZoomLevel(double zoom_level); 859 void OnSetZoomLevel(double zoom_level);
860 void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level); 860 void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level);
861 void OnExitFullscreen(); 861 void OnExitFullscreen();
862 void OnShouldClose(); 862 void OnShouldClose();
863 void OnStop(); 863 void OnStop();
864 void OnStopFinding(content::StopFindAction action); 864 void OnStopFinding(content::StopFindAction action);
865 void OnSwapOut(const ViewMsg_SwapOut_Params& params); 865 void OnSwapOut(const ViewMsg_SwapOut_Params& params);
866 void OnTextChecking();
866 void OnThemeChanged(); 867 void OnThemeChanged();
867 void OnUndo(); 868 void OnUndo();
868 void OnUpdateTargetURLAck(); 869 void OnUpdateTargetURLAck();
869 void OnUpdateWebPreferences(const WebPreferences& prefs); 870 void OnUpdateWebPreferences(const WebPreferences& prefs);
870 871
871 #if defined(OS_MACOSX) 872 #if defined(OS_MACOSX)
872 void OnWindowFrameChanged(const gfx::Rect& window_frame, 873 void OnWindowFrameChanged(const gfx::Rect& window_frame,
873 const gfx::Rect& view_frame); 874 const gfx::Rect& view_frame);
874 void OnSelectPopupMenuItem(int selected_index); 875 void OnSelectPopupMenuItem(int selected_index);
875 #endif 876 #endif
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after
1260 // bunch of stuff, you should probably create a helper class and put your 1261 // bunch of stuff, you should probably create a helper class and put your
1261 // data and methods on that to avoid bloating RenderView more. You can 1262 // data and methods on that to avoid bloating RenderView more. You can
1262 // use the Observer interface to filter IPC messages and receive frame change 1263 // use the Observer interface to filter IPC messages and receive frame change
1263 // notifications. 1264 // notifications.
1264 // --------------------------------------------------------------------------- 1265 // ---------------------------------------------------------------------------
1265 1266
1266 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1267 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1267 }; 1268 };
1268 1269
1269 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1270 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « content/common/view_messages.h ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698