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