| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 #pragma warning(disable: 4250) | 72 #pragma warning(disable: 4250) |
| 73 #endif | 73 #endif |
| 74 | 74 |
| 75 class CommandLine; | 75 class CommandLine; |
| 76 class PepperDeviceTest; | 76 class PepperDeviceTest; |
| 77 class SkBitmap; | 77 class SkBitmap; |
| 78 struct PP_NetAddress_Private; | 78 struct PP_NetAddress_Private; |
| 79 struct ViewMsg_Navigate_Params; | 79 struct ViewMsg_Navigate_Params; |
| 80 struct ViewMsg_PostMessage_Params; | 80 struct ViewMsg_PostMessage_Params; |
| 81 struct ViewMsg_StopFinding_Params; | 81 struct ViewMsg_StopFinding_Params; |
| 82 struct ViewMsg_SwapOut_Params; | |
| 83 struct WebDropData; | 82 struct WebDropData; |
| 84 | 83 |
| 85 namespace ui { | 84 namespace ui { |
| 86 struct SelectedFileInfo; | 85 struct SelectedFileInfo; |
| 87 } // namespace ui | 86 } // namespace ui |
| 88 | 87 |
| 89 namespace webkit { | 88 namespace webkit { |
| 90 | 89 |
| 91 namespace ppapi { | 90 namespace ppapi { |
| 92 class PluginInstance; | 91 class PluginInstance; |
| (...skipping 942 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1035 void OnSetHistoryLengthAndPrune(int history_length, int32 minimum_page_id); | 1034 void OnSetHistoryLengthAndPrune(int history_length, int32 minimum_page_id); |
| 1036 void OnSetInitialFocus(bool reverse); | 1035 void OnSetInitialFocus(bool reverse); |
| 1037 void OnSetPageEncoding(const std::string& encoding_name); | 1036 void OnSetPageEncoding(const std::string& encoding_name); |
| 1038 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); | 1037 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); |
| 1039 void OnSetWebUIProperty(const std::string& name, const std::string& value); | 1038 void OnSetWebUIProperty(const std::string& name, const std::string& value); |
| 1040 void OnSetZoomLevel(double zoom_level); | 1039 void OnSetZoomLevel(double zoom_level); |
| 1041 void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level); | 1040 void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level); |
| 1042 void OnShouldClose(); | 1041 void OnShouldClose(); |
| 1043 void OnStop(); | 1042 void OnStop(); |
| 1044 void OnStopFinding(StopFindAction action); | 1043 void OnStopFinding(StopFindAction action); |
| 1045 void OnSwapOut(const ViewMsg_SwapOut_Params& params); | 1044 void OnSwapOut(); |
| 1046 void OnThemeChanged(); | 1045 void OnThemeChanged(); |
| 1047 void OnUpdateTargetURLAck(); | 1046 void OnUpdateTargetURLAck(); |
| 1048 void OnUpdateTimezone(); | 1047 void OnUpdateTimezone(); |
| 1049 void OnUpdateWebPreferences(const WebPreferences& prefs); | 1048 void OnUpdateWebPreferences(const WebPreferences& prefs); |
| 1050 | 1049 |
| 1051 void OnZoom(PageZoom zoom); | 1050 void OnZoom(PageZoom zoom); |
| 1052 void OnZoomFactor(PageZoom zoom, int zoom_center_x, int zoom_center_y); | 1051 void OnZoomFactor(PageZoom zoom, int zoom_center_x, int zoom_center_y); |
| 1053 | 1052 |
| 1054 void OnEnableViewSourceMode(); | 1053 void OnEnableViewSourceMode(); |
| 1055 | 1054 |
| (...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1556 // use the Observer interface to filter IPC messages and receive frame change | 1555 // use the Observer interface to filter IPC messages and receive frame change |
| 1557 // notifications. | 1556 // notifications. |
| 1558 // --------------------------------------------------------------------------- | 1557 // --------------------------------------------------------------------------- |
| 1559 | 1558 |
| 1560 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1559 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1561 }; | 1560 }; |
| 1562 | 1561 |
| 1563 } // namespace content | 1562 } // namespace content |
| 1564 | 1563 |
| 1565 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1564 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |