| 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 596 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 607 void OnEnableAutoResize(const gfx::Size& min_size, const gfx::Size& max_size); | 607 void OnEnableAutoResize(const gfx::Size& min_size, const gfx::Size& max_size); |
| 608 void OnDisableAutoResize(const gfx::Size& new_size); | 608 void OnDisableAutoResize(const gfx::Size& new_size); |
| 609 void OnEnumerateDirectoryResponse(int id, | 609 void OnEnumerateDirectoryResponse(int id, |
| 610 const std::vector<base::FilePath>& paths); | 610 const std::vector<base::FilePath>& paths); |
| 611 void OnMediaPlayerActionAt(const gfx::Point& location, | 611 void OnMediaPlayerActionAt(const gfx::Point& location, |
| 612 const blink::WebMediaPlayerAction& action); | 612 const blink::WebMediaPlayerAction& action); |
| 613 void OnPluginActionAt(const gfx::Point& location, | 613 void OnPluginActionAt(const gfx::Point& location, |
| 614 const blink::WebPluginAction& action); | 614 const blink::WebPluginAction& action); |
| 615 void OnMoveOrResizeStarted(); | 615 void OnMoveOrResizeStarted(); |
| 616 void OnReleaseDisambiguationPopupBitmap(const cc::SharedBitmapId& id); | 616 void OnReleaseDisambiguationPopupBitmap(const cc::SharedBitmapId& id); |
| 617 void OnResetPageEncodingToDefault(); | |
| 618 void OnSetActive(bool active); | 617 void OnSetActive(bool active); |
| 619 void OnSetBackgroundOpaque(bool opaque); | 618 void OnSetBackgroundOpaque(bool opaque); |
| 620 void OnExitFullscreen(); | 619 void OnExitFullscreen(); |
| 621 void OnSetHistoryOffsetAndLength(int history_offset, int history_length); | 620 void OnSetHistoryOffsetAndLength(int history_offset, int history_length); |
| 622 void OnSetInitialFocus(bool reverse); | 621 void OnSetInitialFocus(bool reverse); |
| 623 void OnSetPageEncoding(const std::string& encoding_name); | |
| 624 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); | 622 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); |
| 625 void OnSetWebUIProperty(const std::string& name, const std::string& value); | 623 void OnSetWebUIProperty(const std::string& name, const std::string& value); |
| 626 void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level); | 624 void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level); |
| 627 void OnSuppressDialogsUntilSwapOut(); | 625 void OnSuppressDialogsUntilSwapOut(); |
| 628 void OnThemeChanged(); | 626 void OnThemeChanged(); |
| 629 void OnUpdateTargetURLAck(); | 627 void OnUpdateTargetURLAck(); |
| 630 void OnUpdateWebPreferences(const WebPreferences& prefs); | 628 void OnUpdateWebPreferences(const WebPreferences& prefs); |
| 631 void OnSetPageScale(float page_scale_factor); | 629 void OnSetPageScale(float page_scale_factor); |
| 632 void OnZoom(PageZoom zoom); | 630 void OnZoom(PageZoom zoom); |
| 633 void OnForceRedraw(const ui::LatencyInfo& latency_info); | 631 void OnForceRedraw(const ui::LatencyInfo& latency_info); |
| (...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 920 // use the Observer interface to filter IPC messages and receive frame change | 918 // use the Observer interface to filter IPC messages and receive frame change |
| 921 // notifications. | 919 // notifications. |
| 922 // --------------------------------------------------------------------------- | 920 // --------------------------------------------------------------------------- |
| 923 | 921 |
| 924 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 922 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 925 }; | 923 }; |
| 926 | 924 |
| 927 } // namespace content | 925 } // namespace content |
| 928 | 926 |
| 929 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 927 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |