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