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 697 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
708 void OnSetActive(bool active); | 708 void OnSetActive(bool active); |
709 void OnSetBackgroundOpaque(bool opaque); | 709 void OnSetBackgroundOpaque(bool opaque); |
710 void OnExitFullscreen(); | 710 void OnExitFullscreen(); |
711 void OnSetHistoryLengthAndPrune(int history_length, int32 minimum_page_id); | 711 void OnSetHistoryLengthAndPrune(int history_length, int32 minimum_page_id); |
712 void OnSetInitialFocus(bool reverse); | 712 void OnSetInitialFocus(bool reverse); |
713 void OnSetPageEncoding(const std::string& encoding_name); | 713 void OnSetPageEncoding(const std::string& encoding_name); |
714 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); | 714 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); |
715 void OnSetWebUIProperty(const std::string& name, const std::string& value); | 715 void OnSetWebUIProperty(const std::string& name, const std::string& value); |
716 void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level); | 716 void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level); |
717 void OnSetZoomLevelForView(bool uses_temporary_zoom_level, double level); | 717 void OnSetZoomLevelForView(bool uses_temporary_zoom_level, double level); |
718 void OnStop(); | |
719 void OnStopFinding(StopFindAction action); | 718 void OnStopFinding(StopFindAction action); |
720 void OnSuppressDialogsUntilSwapOut(); | 719 void OnSuppressDialogsUntilSwapOut(); |
721 void OnThemeChanged(); | 720 void OnThemeChanged(); |
722 void OnUpdateTargetURLAck(); | 721 void OnUpdateTargetURLAck(); |
723 void OnUpdateWebPreferences(const WebPreferences& prefs); | 722 void OnUpdateWebPreferences(const WebPreferences& prefs); |
724 void OnZoom(PageZoom zoom); | 723 void OnZoom(PageZoom zoom); |
725 void OnEnableViewSourceMode(); | 724 void OnEnableViewSourceMode(); |
726 void OnWindowSnapshotCompleted(const int snapshot_id, | 725 void OnWindowSnapshotCompleted(const int snapshot_id, |
727 const gfx::Size& size, const std::vector<unsigned char>& png); | 726 const gfx::Size& size, const std::vector<unsigned char>& png); |
728 void OnForceRedraw(int request_id); | 727 void OnForceRedraw(int request_id); |
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1129 // use the Observer interface to filter IPC messages and receive frame change | 1128 // use the Observer interface to filter IPC messages and receive frame change |
1130 // notifications. | 1129 // notifications. |
1131 // --------------------------------------------------------------------------- | 1130 // --------------------------------------------------------------------------- |
1132 | 1131 |
1133 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1132 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1134 }; | 1133 }; |
1135 | 1134 |
1136 } // namespace content | 1135 } // namespace content |
1137 | 1136 |
1138 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1137 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |