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 766 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
777 void OnStopFinding(StopFindAction action); | 777 void OnStopFinding(StopFindAction action); |
778 void OnSuppressDialogsUntilSwapOut(); | 778 void OnSuppressDialogsUntilSwapOut(); |
779 void OnThemeChanged(); | 779 void OnThemeChanged(); |
780 void OnUpdateTargetURLAck(); | 780 void OnUpdateTargetURLAck(); |
781 void OnUpdateWebPreferences(const WebPreferences& prefs); | 781 void OnUpdateWebPreferences(const WebPreferences& prefs); |
782 void OnZoom(PageZoom zoom); | 782 void OnZoom(PageZoom zoom); |
783 void OnEnableViewSourceMode(); | 783 void OnEnableViewSourceMode(); |
784 void OnDisownOpener(); | 784 void OnDisownOpener(); |
785 void OnWindowSnapshotCompleted(const int snapshot_id, | 785 void OnWindowSnapshotCompleted(const int snapshot_id, |
786 const gfx::Size& size, const std::vector<unsigned char>& png); | 786 const gfx::Size& size, const std::vector<unsigned char>& png); |
| 787 void OnSelectWordAroundCaret(); |
787 #if defined(OS_ANDROID) | 788 #if defined(OS_ANDROID) |
788 void OnActivateNearestFindResult(int request_id, float x, float y); | 789 void OnActivateNearestFindResult(int request_id, float x, float y); |
789 void OnFindMatchRects(int current_version); | 790 void OnFindMatchRects(int current_version); |
790 void OnSelectPopupMenuItems(bool canceled, | 791 void OnSelectPopupMenuItems(bool canceled, |
791 const std::vector<int>& selected_indices); | 792 const std::vector<int>& selected_indices); |
792 void OnUndoScrollFocusedEditableNodeIntoRect(); | 793 void OnUndoScrollFocusedEditableNodeIntoRect(); |
793 void OnUpdateTopControlsState(bool enable_hiding, | 794 void OnUpdateTopControlsState(bool enable_hiding, |
794 bool enable_showing, | 795 bool enable_showing, |
795 bool animate); | 796 bool animate); |
796 void OnPauseVideo(); | 797 void OnPauseVideo(); |
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1239 // use the Observer interface to filter IPC messages and receive frame change | 1240 // use the Observer interface to filter IPC messages and receive frame change |
1240 // notifications. | 1241 // notifications. |
1241 // --------------------------------------------------------------------------- | 1242 // --------------------------------------------------------------------------- |
1242 | 1243 |
1243 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1244 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1244 }; | 1245 }; |
1245 | 1246 |
1246 } // namespace content | 1247 } // namespace content |
1247 | 1248 |
1248 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1249 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |