| 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_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 734 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 745 void OnResetPageEncodingToDefault(); | 745 void OnResetPageEncodingToDefault(); |
| 746 void OnSetAccessibilityMode(AccessibilityMode new_mode); | 746 void OnSetAccessibilityMode(AccessibilityMode new_mode); |
| 747 void OnSetActive(bool active); | 747 void OnSetActive(bool active); |
| 748 void OnSetBackgroundOpaque(bool opaque); | 748 void OnSetBackgroundOpaque(bool opaque); |
| 749 void OnExitFullscreen(); | 749 void OnExitFullscreen(); |
| 750 void OnSetHistoryLengthAndPrune(int history_length, int32 minimum_page_id); | 750 void OnSetHistoryLengthAndPrune(int history_length, int32 minimum_page_id); |
| 751 void OnSetInitialFocus(bool reverse); | 751 void OnSetInitialFocus(bool reverse); |
| 752 void OnSetPageEncoding(const std::string& encoding_name); | 752 void OnSetPageEncoding(const std::string& encoding_name); |
| 753 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); | 753 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); |
| 754 void OnSetWebUIProperty(const std::string& name, const std::string& value); | 754 void OnSetWebUIProperty(const std::string& name, const std::string& value); |
| 755 void OnSetZoomLevel(double zoom_level); | |
| 756 void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level); | 755 void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level); |
| 757 void OnStop(); | 756 void OnStop(); |
| 758 void OnStopFinding(StopFindAction action); | 757 void OnStopFinding(StopFindAction action); |
| 759 void OnSuppressDialogsUntilSwapOut(); | 758 void OnSuppressDialogsUntilSwapOut(); |
| 760 void OnThemeChanged(); | 759 void OnThemeChanged(); |
| 761 void OnUpdateTargetURLAck(); | 760 void OnUpdateTargetURLAck(); |
| 762 void OnUpdateWebPreferences(const WebPreferences& prefs); | 761 void OnUpdateWebPreferences(const WebPreferences& prefs); |
| 763 void OnZoom(PageZoom zoom); | 762 void OnZoom(PageZoom zoom); |
| 764 void OnEnableViewSourceMode(); | 763 void OnEnableViewSourceMode(); |
| 765 void OnDisownOpener(); | 764 void OnDisownOpener(); |
| (...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1212 // use the Observer interface to filter IPC messages and receive frame change | 1211 // use the Observer interface to filter IPC messages and receive frame change |
| 1213 // notifications. | 1212 // notifications. |
| 1214 // --------------------------------------------------------------------------- | 1213 // --------------------------------------------------------------------------- |
| 1215 | 1214 |
| 1216 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1215 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1217 }; | 1216 }; |
| 1218 | 1217 |
| 1219 } // namespace content | 1218 } // namespace content |
| 1220 | 1219 |
| 1221 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1220 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |