| 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 <deque> | 8 #include <deque> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 655 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 666 void OnStopFinding(StopFindAction action); | 666 void OnStopFinding(StopFindAction action); |
| 667 void OnSuppressDialogsUntilSwapOut(); | 667 void OnSuppressDialogsUntilSwapOut(); |
| 668 void OnThemeChanged(); | 668 void OnThemeChanged(); |
| 669 void OnUpdateTargetURLAck(); | 669 void OnUpdateTargetURLAck(); |
| 670 void OnUpdateWebPreferences(const WebPreferences& prefs); | 670 void OnUpdateWebPreferences(const WebPreferences& prefs); |
| 671 void OnResetPageScale(); | 671 void OnResetPageScale(); |
| 672 void OnZoom(PageZoom zoom); | 672 void OnZoom(PageZoom zoom); |
| 673 void OnEnableViewSourceMode(); | 673 void OnEnableViewSourceMode(); |
| 674 void OnForceRedraw(int request_id); | 674 void OnForceRedraw(int request_id); |
| 675 void OnSelectWordAroundCaret(); | 675 void OnSelectWordAroundCaret(); |
| 676 void OnMoveSelectionByCharacterOffset(int start_adjust, int end_adjust); |
| 676 #if defined(OS_ANDROID) | 677 #if defined(OS_ANDROID) |
| 677 void OnActivateNearestFindResult(int request_id, float x, float y); | 678 void OnActivateNearestFindResult(int request_id, float x, float y); |
| 678 void OnFindMatchRects(int current_version); | 679 void OnFindMatchRects(int current_version); |
| 679 void OnUndoScrollFocusedEditableNodeIntoRect(); | 680 void OnUndoScrollFocusedEditableNodeIntoRect(); |
| 680 void OnUpdateTopControlsState(bool enable_hiding, | 681 void OnUpdateTopControlsState(bool enable_hiding, |
| 681 bool enable_showing, | 682 bool enable_showing, |
| 682 bool animate); | 683 bool animate); |
| 683 void OnExtractSmartClipData(const gfx::Rect& rect); | 684 void OnExtractSmartClipData(const gfx::Rect& rect); |
| 684 #elif defined(OS_MACOSX) | 685 #elif defined(OS_MACOSX) |
| 685 void OnGetRenderedText(); | 686 void OnGetRenderedText(); |
| (...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1020 // use the Observer interface to filter IPC messages and receive frame change | 1021 // use the Observer interface to filter IPC messages and receive frame change |
| 1021 // notifications. | 1022 // notifications. |
| 1022 // --------------------------------------------------------------------------- | 1023 // --------------------------------------------------------------------------- |
| 1023 | 1024 |
| 1024 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1025 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1025 }; | 1026 }; |
| 1026 | 1027 |
| 1027 } // namespace content | 1028 } // namespace content |
| 1028 | 1029 |
| 1029 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1030 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |