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