| 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 654 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 665 void OnSetZoomLevelForView(bool uses_temporary_zoom_level, double level); | 665 void OnSetZoomLevelForView(bool uses_temporary_zoom_level, double level); |
| 666 void OnSuppressDialogsUntilSwapOut(); | 666 void OnSuppressDialogsUntilSwapOut(); |
| 667 void OnThemeChanged(); | 667 void OnThemeChanged(); |
| 668 void OnUpdateTargetURLAck(); | 668 void OnUpdateTargetURLAck(); |
| 669 void OnUpdateWebPreferences(const WebPreferences& prefs); | 669 void OnUpdateWebPreferences(const WebPreferences& prefs); |
| 670 void OnSetPageScale(float page_scale_factor); | 670 void OnSetPageScale(float page_scale_factor); |
| 671 void OnZoom(PageZoom zoom); | 671 void OnZoom(PageZoom zoom); |
| 672 void OnEnableViewSourceMode(); | 672 void OnEnableViewSourceMode(); |
| 673 void OnForceRedraw(int request_id); | 673 void OnForceRedraw(int request_id); |
| 674 void OnSelectWordAroundCaret(); | 674 void OnSelectWordAroundCaret(); |
| 675 void OnUpdateWindowScreenRect(gfx::Rect window_screen_rect); |
| 675 #if defined(OS_ANDROID) | 676 #if defined(OS_ANDROID) |
| 676 void OnUndoScrollFocusedEditableNodeIntoRect(); | 677 void OnUndoScrollFocusedEditableNodeIntoRect(); |
| 677 void OnUpdateTopControlsState(bool enable_hiding, | 678 void OnUpdateTopControlsState(bool enable_hiding, |
| 678 bool enable_showing, | 679 bool enable_showing, |
| 679 bool animate); | 680 bool animate); |
| 680 void OnExtractSmartClipData(const gfx::Rect& rect); | 681 void OnExtractSmartClipData(const gfx::Rect& rect); |
| 681 #elif defined(OS_MACOSX) | 682 #elif defined(OS_MACOSX) |
| 682 void OnGetRenderedText(); | 683 void OnGetRenderedText(); |
| 683 void OnPluginImeCompositionCompleted(const base::string16& text, | 684 void OnPluginImeCompositionCompleted(const base::string16& text, |
| 684 int plugin_id); | 685 int plugin_id); |
| (...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1017 // use the Observer interface to filter IPC messages and receive frame change | 1018 // use the Observer interface to filter IPC messages and receive frame change |
| 1018 // notifications. | 1019 // notifications. |
| 1019 // --------------------------------------------------------------------------- | 1020 // --------------------------------------------------------------------------- |
| 1020 | 1021 |
| 1021 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1022 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1022 }; | 1023 }; |
| 1023 | 1024 |
| 1024 } // namespace content | 1025 } // namespace content |
| 1025 | 1026 |
| 1026 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1027 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |