Chromium Code Reviews| 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 658 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 669 void OnSetZoomLevelForView(bool uses_temporary_zoom_level, double level); | 669 void OnSetZoomLevelForView(bool uses_temporary_zoom_level, double level); |
| 670 void OnSuppressDialogsUntilSwapOut(); | 670 void OnSuppressDialogsUntilSwapOut(); |
| 671 void OnThemeChanged(); | 671 void OnThemeChanged(); |
| 672 void OnUpdateTargetURLAck(); | 672 void OnUpdateTargetURLAck(); |
| 673 void OnUpdateWebPreferences(const WebPreferences& prefs); | 673 void OnUpdateWebPreferences(const WebPreferences& prefs); |
| 674 void OnSetPageScale(float page_scale_factor); | 674 void OnSetPageScale(float page_scale_factor); |
| 675 void OnZoom(PageZoom zoom); | 675 void OnZoom(PageZoom zoom); |
| 676 void OnEnableViewSourceMode(); | 676 void OnEnableViewSourceMode(); |
| 677 void OnForceRedraw(int request_id); | 677 void OnForceRedraw(int request_id); |
| 678 void OnSelectWordAroundCaret(); | 678 void OnSelectWordAroundCaret(); |
| 679 void OnUpdateWindowScreenRect(gfx::Rect window_screen_rect); | |
|
nasko
2016/03/03 18:28:57
Let's move this towards the end of this section an
lfg
2016/03/03 22:09:38
Done.
| |
| 679 #if defined(OS_ANDROID) | 680 #if defined(OS_ANDROID) |
| 680 void OnUndoScrollFocusedEditableNodeIntoRect(); | 681 void OnUndoScrollFocusedEditableNodeIntoRect(); |
| 681 void OnUpdateTopControlsState(bool enable_hiding, | 682 void OnUpdateTopControlsState(bool enable_hiding, |
| 682 bool enable_showing, | 683 bool enable_showing, |
| 683 bool animate); | 684 bool animate); |
| 684 void OnExtractSmartClipData(const gfx::Rect& rect); | 685 void OnExtractSmartClipData(const gfx::Rect& rect); |
| 685 #elif defined(OS_MACOSX) | 686 #elif defined(OS_MACOSX) |
| 686 void OnGetRenderedText(); | 687 void OnGetRenderedText(); |
| 687 void OnPluginImeCompositionCompleted(const base::string16& text, | 688 void OnPluginImeCompositionCompleted(const base::string16& text, |
| 688 int plugin_id); | 689 int plugin_id); |
| (...skipping 327 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 |