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 607 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
618 void OnSetActive(bool active); | 618 void OnSetActive(bool active); |
619 void OnSetBackgroundOpaque(bool opaque); | 619 void OnSetBackgroundOpaque(bool opaque); |
620 void OnExitFullscreen(); | 620 void OnExitFullscreen(); |
621 void OnSetHistoryOffsetAndLength(int history_offset, int history_length); | 621 void OnSetHistoryOffsetAndLength(int history_offset, int history_length); |
622 void OnSetInitialFocus(bool reverse); | 622 void OnSetInitialFocus(bool reverse); |
623 void OnSetPageEncoding(const std::string& encoding_name); | 623 void OnSetPageEncoding(const std::string& encoding_name); |
624 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); | 624 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); |
625 void OnSetWebUIProperty(const std::string& name, const std::string& value); | 625 void OnSetWebUIProperty(const std::string& name, const std::string& value); |
626 void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level); | 626 void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level); |
627 void OnSuppressDialogsUntilSwapOut(); | 627 void OnSuppressDialogsUntilSwapOut(); |
628 void OnThemeChanged(); | |
629 void OnUpdateTargetURLAck(); | 628 void OnUpdateTargetURLAck(); |
630 void OnUpdateWebPreferences(const WebPreferences& prefs); | 629 void OnUpdateWebPreferences(const WebPreferences& prefs); |
631 void OnSetPageScale(float page_scale_factor); | 630 void OnSetPageScale(float page_scale_factor); |
632 void OnZoom(PageZoom zoom); | 631 void OnZoom(PageZoom zoom); |
633 void OnForceRedraw(const ui::LatencyInfo& latency_info); | 632 void OnForceRedraw(const ui::LatencyInfo& latency_info); |
634 void OnSelectWordAroundCaret(); | 633 void OnSelectWordAroundCaret(); |
635 #if defined(OS_ANDROID) | 634 #if defined(OS_ANDROID) |
636 void OnUndoScrollFocusedEditableNodeIntoRect(); | 635 void OnUndoScrollFocusedEditableNodeIntoRect(); |
637 void OnUpdateTopControlsState(bool enable_hiding, | 636 void OnUpdateTopControlsState(bool enable_hiding, |
638 bool enable_showing, | 637 bool enable_showing, |
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
920 // use the Observer interface to filter IPC messages and receive frame change | 919 // use the Observer interface to filter IPC messages and receive frame change |
921 // notifications. | 920 // notifications. |
922 // --------------------------------------------------------------------------- | 921 // --------------------------------------------------------------------------- |
923 | 922 |
924 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 923 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
925 }; | 924 }; |
926 | 925 |
927 } // namespace content | 926 } // namespace content |
928 | 927 |
929 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 928 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |