| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 641 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 652 const std::vector<content::FileChooserFileInfo>& files); | 652 const std::vector<content::FileChooserFileInfo>& files); |
| 653 void OnMediaPlayerActionAt(const gfx::Point& location, | 653 void OnMediaPlayerActionAt(const gfx::Point& location, |
| 654 const blink::WebMediaPlayerAction& action); | 654 const blink::WebMediaPlayerAction& action); |
| 655 void OnPluginActionAt(const gfx::Point& location, | 655 void OnPluginActionAt(const gfx::Point& location, |
| 656 const blink::WebPluginAction& action); | 656 const blink::WebPluginAction& action); |
| 657 void OnMoveOrResizeStarted(); | 657 void OnMoveOrResizeStarted(); |
| 658 void OnReleaseDisambiguationPopupBitmap(const cc::SharedBitmapId& id); | 658 void OnReleaseDisambiguationPopupBitmap(const cc::SharedBitmapId& id); |
| 659 void OnResetPageEncodingToDefault(); | 659 void OnResetPageEncodingToDefault(); |
| 660 void OnSetActive(bool active); | 660 void OnSetActive(bool active); |
| 661 void OnSetBackgroundOpaque(bool opaque); | 661 void OnSetBackgroundOpaque(bool opaque); |
| 662 void OnSetBackgroundColor(SkColor color); |
| 662 void OnExitFullscreen(); | 663 void OnExitFullscreen(); |
| 663 void OnSetHistoryOffsetAndLength(int history_offset, int history_length); | 664 void OnSetHistoryOffsetAndLength(int history_offset, int history_length); |
| 664 void OnSetInitialFocus(bool reverse); | 665 void OnSetInitialFocus(bool reverse); |
| 665 void OnSetPageEncoding(const std::string& encoding_name); | 666 void OnSetPageEncoding(const std::string& encoding_name); |
| 666 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); | 667 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); |
| 667 void OnSetWebUIProperty(const std::string& name, const std::string& value); | 668 void OnSetWebUIProperty(const std::string& name, const std::string& value); |
| 668 void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level); | 669 void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level); |
| 669 void OnSetZoomLevelForView(bool uses_temporary_zoom_level, double level); | 670 void OnSetZoomLevelForView(bool uses_temporary_zoom_level, double level); |
| 670 void OnSuppressDialogsUntilSwapOut(); | 671 void OnSuppressDialogsUntilSwapOut(); |
| 671 void OnThemeChanged(); | 672 void OnThemeChanged(); |
| (...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1016 // use the Observer interface to filter IPC messages and receive frame change | 1017 // use the Observer interface to filter IPC messages and receive frame change |
| 1017 // notifications. | 1018 // notifications. |
| 1018 // --------------------------------------------------------------------------- | 1019 // --------------------------------------------------------------------------- |
| 1019 | 1020 |
| 1020 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1021 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1021 }; | 1022 }; |
| 1022 | 1023 |
| 1023 } // namespace content | 1024 } // namespace content |
| 1024 | 1025 |
| 1025 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1026 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |