| 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 746 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 757 const blink::WebMediaPlayerAction& action); | 757 const blink::WebMediaPlayerAction& action); |
| 758 void OnOrientationChangeEvent(int orientation); | 758 void OnOrientationChangeEvent(int orientation); |
| 759 void OnPluginActionAt(const gfx::Point& location, | 759 void OnPluginActionAt(const gfx::Point& location, |
| 760 const blink::WebPluginAction& action); | 760 const blink::WebPluginAction& action); |
| 761 void OnMoveOrResizeStarted(); | 761 void OnMoveOrResizeStarted(); |
| 762 void OnPostMessageEvent(const ViewMsg_PostMessage_Params& params); | 762 void OnPostMessageEvent(const ViewMsg_PostMessage_Params& params); |
| 763 void OnReleaseDisambiguationPopupBitmap(const cc::SharedBitmapId& id); | 763 void OnReleaseDisambiguationPopupBitmap(const cc::SharedBitmapId& id); |
| 764 void OnResetPageEncodingToDefault(); | 764 void OnResetPageEncodingToDefault(); |
| 765 void OnSetAccessibilityMode(AccessibilityMode new_mode); | 765 void OnSetAccessibilityMode(AccessibilityMode new_mode); |
| 766 void OnSetActive(bool active); | 766 void OnSetActive(bool active); |
| 767 void OnSetBackground(const SkBitmap& background); | 767 void OnSetBackgroundOpaque(bool opaque); |
| 768 void OnExitFullscreen(); | 768 void OnExitFullscreen(); |
| 769 void OnSetHistoryLengthAndPrune(int history_length, int32 minimum_page_id); | 769 void OnSetHistoryLengthAndPrune(int history_length, int32 minimum_page_id); |
| 770 void OnSetInitialFocus(bool reverse); | 770 void OnSetInitialFocus(bool reverse); |
| 771 void OnSetPageEncoding(const std::string& encoding_name); | 771 void OnSetPageEncoding(const std::string& encoding_name); |
| 772 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); | 772 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); |
| 773 void OnSetWebUIProperty(const std::string& name, const std::string& value); | 773 void OnSetWebUIProperty(const std::string& name, const std::string& value); |
| 774 void OnSetZoomLevel(double zoom_level); | 774 void OnSetZoomLevel(double zoom_level); |
| 775 void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level); | 775 void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level); |
| 776 void OnStop(); | 776 void OnStop(); |
| 777 void OnStopFinding(StopFindAction action); | 777 void OnStopFinding(StopFindAction action); |
| (...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1239 // use the Observer interface to filter IPC messages and receive frame change | 1239 // use the Observer interface to filter IPC messages and receive frame change |
| 1240 // notifications. | 1240 // notifications. |
| 1241 // --------------------------------------------------------------------------- | 1241 // --------------------------------------------------------------------------- |
| 1242 | 1242 |
| 1243 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1243 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1244 }; | 1244 }; |
| 1245 | 1245 |
| 1246 } // namespace content | 1246 } // namespace content |
| 1247 | 1247 |
| 1248 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1248 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |