| 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 735 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 746 void OnStopFinding(StopFindAction action); | 746 void OnStopFinding(StopFindAction action); |
| 747 void OnSuppressDialogsUntilSwapOut(); | 747 void OnSuppressDialogsUntilSwapOut(); |
| 748 void OnThemeChanged(); | 748 void OnThemeChanged(); |
| 749 void OnUpdateTargetURLAck(); | 749 void OnUpdateTargetURLAck(); |
| 750 void OnUpdateWebPreferences(const WebPreferences& prefs); | 750 void OnUpdateWebPreferences(const WebPreferences& prefs); |
| 751 void OnZoom(PageZoom zoom); | 751 void OnZoom(PageZoom zoom); |
| 752 void OnEnableViewSourceMode(); | 752 void OnEnableViewSourceMode(); |
| 753 void OnDisownOpener(); | 753 void OnDisownOpener(); |
| 754 void OnWindowSnapshotCompleted(const int snapshot_id, | 754 void OnWindowSnapshotCompleted(const int snapshot_id, |
| 755 const gfx::Size& size, const std::vector<unsigned char>& png); | 755 const gfx::Size& size, const std::vector<unsigned char>& png); |
| 756 void OnForceRedraw(int request_id); | |
| 757 void OnSelectWordAroundCaret(); | 756 void OnSelectWordAroundCaret(); |
| 758 #if defined(OS_ANDROID) | 757 #if defined(OS_ANDROID) |
| 759 void OnActivateNearestFindResult(int request_id, float x, float y); | 758 void OnActivateNearestFindResult(int request_id, float x, float y); |
| 760 void OnFindMatchRects(int current_version); | 759 void OnFindMatchRects(int current_version); |
| 761 void OnSelectPopupMenuItems(bool canceled, | 760 void OnSelectPopupMenuItems(bool canceled, |
| 762 const std::vector<int>& selected_indices); | 761 const std::vector<int>& selected_indices); |
| 763 void OnUndoScrollFocusedEditableNodeIntoRect(); | 762 void OnUndoScrollFocusedEditableNodeIntoRect(); |
| 764 void OnUpdateTopControlsState(bool enable_hiding, | 763 void OnUpdateTopControlsState(bool enable_hiding, |
| 765 bool enable_showing, | 764 bool enable_showing, |
| 766 bool animate); | 765 bool animate); |
| (...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1177 // use the Observer interface to filter IPC messages and receive frame change | 1176 // use the Observer interface to filter IPC messages and receive frame change |
| 1178 // notifications. | 1177 // notifications. |
| 1179 // --------------------------------------------------------------------------- | 1178 // --------------------------------------------------------------------------- |
| 1180 | 1179 |
| 1181 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1180 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1182 }; | 1181 }; |
| 1183 | 1182 |
| 1184 } // namespace content | 1183 } // namespace content |
| 1185 | 1184 |
| 1186 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1185 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |