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