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