| 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 731 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 742 void OnResetPageEncodingToDefault(); | 742 void OnResetPageEncodingToDefault(); |
| 743 void OnSetAccessibilityMode(AccessibilityMode new_mode); | 743 void OnSetAccessibilityMode(AccessibilityMode new_mode); |
| 744 void OnSetActive(bool active); | 744 void OnSetActive(bool active); |
| 745 void OnSetBackgroundOpaque(bool opaque); | 745 void OnSetBackgroundOpaque(bool opaque); |
| 746 void OnExitFullscreen(); | 746 void OnExitFullscreen(); |
| 747 void OnSetHistoryLengthAndPrune(int history_length, int32 minimum_page_id); | 747 void OnSetHistoryLengthAndPrune(int history_length, int32 minimum_page_id); |
| 748 void OnSetInitialFocus(bool reverse); | 748 void OnSetInitialFocus(bool reverse); |
| 749 void OnSetPageEncoding(const std::string& encoding_name); | 749 void OnSetPageEncoding(const std::string& encoding_name); |
| 750 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); | 750 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); |
| 751 void OnSetWebUIProperty(const std::string& name, const std::string& value); | 751 void OnSetWebUIProperty(const std::string& name, const std::string& value); |
| 752 void OnSetZoomLevel(double zoom_level); | |
| 753 void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level); | 752 void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level); |
| 754 void OnStop(); | 753 void OnStop(); |
| 755 void OnStopFinding(StopFindAction action); | 754 void OnStopFinding(StopFindAction action); |
| 756 void OnSuppressDialogsUntilSwapOut(); | 755 void OnSuppressDialogsUntilSwapOut(); |
| 757 void OnThemeChanged(); | 756 void OnThemeChanged(); |
| 758 void OnUpdateTargetURLAck(); | 757 void OnUpdateTargetURLAck(); |
| 759 void OnUpdateWebPreferences(const WebPreferences& prefs); | 758 void OnUpdateWebPreferences(const WebPreferences& prefs); |
| 760 void OnZoom(PageZoom zoom); | 759 void OnZoom(PageZoom zoom); |
| 761 void OnEnableViewSourceMode(); | 760 void OnEnableViewSourceMode(); |
| 762 void OnDisownOpener(); | 761 void OnDisownOpener(); |
| (...skipping 449 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 |