| 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 737 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 748 void OnStopFinding(StopFindAction action); | 748 void OnStopFinding(StopFindAction action); |
| 749 void OnSuppressDialogsUntilSwapOut(); | 749 void OnSuppressDialogsUntilSwapOut(); |
| 750 void OnThemeChanged(); | 750 void OnThemeChanged(); |
| 751 void OnUpdateTargetURLAck(); | 751 void OnUpdateTargetURLAck(); |
| 752 void OnUpdateWebPreferences(const WebPreferences& prefs); | 752 void OnUpdateWebPreferences(const WebPreferences& prefs); |
| 753 void OnZoom(PageZoom zoom); | 753 void OnZoom(PageZoom zoom); |
| 754 void OnEnableViewSourceMode(); | 754 void OnEnableViewSourceMode(); |
| 755 void OnDisownOpener(); | 755 void OnDisownOpener(); |
| 756 void OnWindowSnapshotCompleted(const int snapshot_id, | 756 void OnWindowSnapshotCompleted(const int snapshot_id, |
| 757 const gfx::Size& size, const std::vector<unsigned char>& png); | 757 const gfx::Size& size, const std::vector<unsigned char>& png); |
| 758 void OnForceRedraw(int request_id); |
| 758 void OnSelectWordAroundCaret(); | 759 void OnSelectWordAroundCaret(); |
| 759 #if defined(OS_ANDROID) | 760 #if defined(OS_ANDROID) |
| 760 void OnActivateNearestFindResult(int request_id, float x, float y); | 761 void OnActivateNearestFindResult(int request_id, float x, float y); |
| 761 void OnFindMatchRects(int current_version); | 762 void OnFindMatchRects(int current_version); |
| 762 void OnSelectPopupMenuItems(bool canceled, | 763 void OnSelectPopupMenuItems(bool canceled, |
| 763 const std::vector<int>& selected_indices); | 764 const std::vector<int>& selected_indices); |
| 764 void OnUndoScrollFocusedEditableNodeIntoRect(); | 765 void OnUndoScrollFocusedEditableNodeIntoRect(); |
| 765 void OnUpdateTopControlsState(bool enable_hiding, | 766 void OnUpdateTopControlsState(bool enable_hiding, |
| 766 bool enable_showing, | 767 bool enable_showing, |
| 767 bool animate); | 768 bool animate); |
| (...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1190 // use the Observer interface to filter IPC messages and receive frame change | 1191 // use the Observer interface to filter IPC messages and receive frame change |
| 1191 // notifications. | 1192 // notifications. |
| 1192 // --------------------------------------------------------------------------- | 1193 // --------------------------------------------------------------------------- |
| 1193 | 1194 |
| 1194 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1195 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1195 }; | 1196 }; |
| 1196 | 1197 |
| 1197 } // namespace content | 1198 } // namespace content |
| 1198 | 1199 |
| 1199 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1200 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |