| 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 620 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 631 void OnSetPageEncoding(const std::string& encoding_name); | 631 void OnSetPageEncoding(const std::string& encoding_name); |
| 632 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); | 632 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); |
| 633 void OnSetWebUIProperty(const std::string& name, const std::string& value); | 633 void OnSetWebUIProperty(const std::string& name, const std::string& value); |
| 634 void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level); | 634 void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level); |
| 635 void OnSuppressDialogsUntilSwapOut(); | 635 void OnSuppressDialogsUntilSwapOut(); |
| 636 void OnThemeChanged(); | 636 void OnThemeChanged(); |
| 637 void OnUpdateTargetURLAck(); | 637 void OnUpdateTargetURLAck(); |
| 638 void OnUpdateWebPreferences(const WebPreferences& prefs); | 638 void OnUpdateWebPreferences(const WebPreferences& prefs); |
| 639 void OnSetPageScale(float page_scale_factor); | 639 void OnSetPageScale(float page_scale_factor); |
| 640 void OnZoom(PageZoom zoom); | 640 void OnZoom(PageZoom zoom); |
| 641 void OnForceRedraw(int request_id); | 641 void OnForceRedraw(const ui::LatencyInfo& latency_info); |
| 642 void OnSelectWordAroundCaret(); | 642 void OnSelectWordAroundCaret(); |
| 643 #if defined(OS_ANDROID) | 643 #if defined(OS_ANDROID) |
| 644 void OnUndoScrollFocusedEditableNodeIntoRect(); | 644 void OnUndoScrollFocusedEditableNodeIntoRect(); |
| 645 void OnUpdateTopControlsState(bool enable_hiding, | 645 void OnUpdateTopControlsState(bool enable_hiding, |
| 646 bool enable_showing, | 646 bool enable_showing, |
| 647 bool animate); | 647 bool animate); |
| 648 void OnExtractSmartClipData(const gfx::Rect& rect); | 648 void OnExtractSmartClipData(const gfx::Rect& rect); |
| 649 #elif defined(OS_MACOSX) | 649 #elif defined(OS_MACOSX) |
| 650 void OnGetRenderedText(); | 650 void OnGetRenderedText(); |
| 651 #endif | 651 #endif |
| (...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 928 // use the Observer interface to filter IPC messages and receive frame change | 928 // use the Observer interface to filter IPC messages and receive frame change |
| 929 // notifications. | 929 // notifications. |
| 930 // --------------------------------------------------------------------------- | 930 // --------------------------------------------------------------------------- |
| 931 | 931 |
| 932 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 932 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 933 }; | 933 }; |
| 934 | 934 |
| 935 } // namespace content | 935 } // namespace content |
| 936 | 936 |
| 937 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 937 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |