| 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 724 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 735 void OnMediaPlayerActionAt(const gfx::Point& location, | 735 void OnMediaPlayerActionAt(const gfx::Point& location, |
| 736 const blink::WebMediaPlayerAction& action); | 736 const blink::WebMediaPlayerAction& action); |
| 737 void OnPluginActionAt(const gfx::Point& location, | 737 void OnPluginActionAt(const gfx::Point& location, |
| 738 const blink::WebPluginAction& action); | 738 const blink::WebPluginAction& action); |
| 739 void OnMoveOrResizeStarted(); | 739 void OnMoveOrResizeStarted(); |
| 740 void OnPostMessageEvent(const ViewMsg_PostMessage_Params& params); | 740 void OnPostMessageEvent(const ViewMsg_PostMessage_Params& params); |
| 741 void OnReleaseDisambiguationPopupBitmap(const cc::SharedBitmapId& id); | 741 void OnReleaseDisambiguationPopupBitmap(const cc::SharedBitmapId& id); |
| 742 void OnResetPageEncodingToDefault(); | 742 void OnResetPageEncodingToDefault(); |
| 743 void OnSetAccessibilityMode(AccessibilityMode new_mode); | 743 void OnSetAccessibilityMode(AccessibilityMode new_mode); |
| 744 void OnSetActive(bool active); | 744 void OnSetActive(bool active); |
| 745 void OnSetBackground(const SkBitmap& background); | 745 void OnSetBackgroundOpaque(bool opaque); |
| 746 void OnExitFullscreen(); | 746 void OnExitFullscreen(); |
| 747 void OnSetHistoryLengthAndPrune(int history_length, int32 minimum_page_id); | 747 void OnSetHistoryLengthAndPrune(int history_length, int32 minimum_page_id); |
| 748 void OnSetInitialFocus(bool reverse); | 748 void OnSetInitialFocus(bool reverse); |
| 749 void OnSetPageEncoding(const std::string& encoding_name); | 749 void OnSetPageEncoding(const std::string& encoding_name); |
| 750 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); | 750 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); |
| 751 void OnSetWebUIProperty(const std::string& name, const std::string& value); | 751 void OnSetWebUIProperty(const std::string& name, const std::string& value); |
| 752 void OnSetZoomLevel(double zoom_level); | 752 void OnSetZoomLevel(double zoom_level); |
| 753 void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level); | 753 void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level); |
| 754 void OnStop(); | 754 void OnStop(); |
| 755 void OnStopFinding(StopFindAction action); | 755 void OnStopFinding(StopFindAction action); |
| (...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1212 // use the Observer interface to filter IPC messages and receive frame change | 1212 // use the Observer interface to filter IPC messages and receive frame change |
| 1213 // notifications. | 1213 // notifications. |
| 1214 // --------------------------------------------------------------------------- | 1214 // --------------------------------------------------------------------------- |
| 1215 | 1215 |
| 1216 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1216 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1217 }; | 1217 }; |
| 1218 | 1218 |
| 1219 } // namespace content | 1219 } // namespace content |
| 1220 | 1220 |
| 1221 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1221 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |