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

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

Issue 15682009: Eliminate SwapOut message parameters, keeping state in RVHM instead. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix merge conflicts Created 7 years, 6 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
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 7
8 #include <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 #pragma warning(disable: 4250) 72 #pragma warning(disable: 4250)
73 #endif 73 #endif
74 74
75 class CommandLine; 75 class CommandLine;
76 class PepperDeviceTest; 76 class PepperDeviceTest;
77 class SkBitmap; 77 class SkBitmap;
78 struct PP_NetAddress_Private; 78 struct PP_NetAddress_Private;
79 struct ViewMsg_Navigate_Params; 79 struct ViewMsg_Navigate_Params;
80 struct ViewMsg_PostMessage_Params; 80 struct ViewMsg_PostMessage_Params;
81 struct ViewMsg_StopFinding_Params; 81 struct ViewMsg_StopFinding_Params;
82 struct ViewMsg_SwapOut_Params;
83 struct WebDropData; 82 struct WebDropData;
84 83
85 namespace ui { 84 namespace ui {
86 struct SelectedFileInfo; 85 struct SelectedFileInfo;
87 } // namespace ui 86 } // namespace ui
88 87
89 namespace webkit { 88 namespace webkit {
90 89
91 namespace ppapi { 90 namespace ppapi {
92 class PluginInstance; 91 class PluginInstance;
(...skipping 941 matching lines...) Expand 10 before | Expand all | Expand 10 after
1034 void OnSetHistoryLengthAndPrune(int history_length, int32 minimum_page_id); 1033 void OnSetHistoryLengthAndPrune(int history_length, int32 minimum_page_id);
1035 void OnSetInitialFocus(bool reverse); 1034 void OnSetInitialFocus(bool reverse);
1036 void OnSetPageEncoding(const std::string& encoding_name); 1035 void OnSetPageEncoding(const std::string& encoding_name);
1037 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); 1036 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs);
1038 void OnSetWebUIProperty(const std::string& name, const std::string& value); 1037 void OnSetWebUIProperty(const std::string& name, const std::string& value);
1039 void OnSetZoomLevel(double zoom_level); 1038 void OnSetZoomLevel(double zoom_level);
1040 void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level); 1039 void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level);
1041 void OnShouldClose(); 1040 void OnShouldClose();
1042 void OnStop(); 1041 void OnStop();
1043 void OnStopFinding(StopFindAction action); 1042 void OnStopFinding(StopFindAction action);
1044 void OnSwapOut(const ViewMsg_SwapOut_Params& params); 1043 void OnSwapOut();
1045 void OnThemeChanged(); 1044 void OnThemeChanged();
1046 void OnUpdateTargetURLAck(); 1045 void OnUpdateTargetURLAck();
1047 void OnUpdateTimezone(); 1046 void OnUpdateTimezone();
1048 void OnUpdateWebPreferences(const WebPreferences& prefs); 1047 void OnUpdateWebPreferences(const WebPreferences& prefs);
1049 1048
1050 void OnZoom(PageZoom zoom); 1049 void OnZoom(PageZoom zoom);
1051 void OnZoomFactor(PageZoom zoom, int zoom_center_x, int zoom_center_y); 1050 void OnZoomFactor(PageZoom zoom, int zoom_center_x, int zoom_center_y);
1052 1051
1053 void OnEnableViewSourceMode(); 1052 void OnEnableViewSourceMode();
1054 1053
(...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after
1555 // use the Observer interface to filter IPC messages and receive frame change 1554 // use the Observer interface to filter IPC messages and receive frame change
1556 // notifications. 1555 // notifications.
1557 // --------------------------------------------------------------------------- 1556 // ---------------------------------------------------------------------------
1558 1557
1559 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1558 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1560 }; 1559 };
1561 1560
1562 } // namespace content 1561 } // namespace content
1563 1562
1564 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1563 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698