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 930 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
941 void OnThemeChanged(); | 941 void OnThemeChanged(); |
942 void OnUpdateTargetURLAck(); | 942 void OnUpdateTargetURLAck(); |
943 void OnUpdateTimezone(); | 943 void OnUpdateTimezone(); |
944 void OnUpdateWebPreferences(const WebPreferences& prefs); | 944 void OnUpdateWebPreferences(const WebPreferences& prefs); |
945 void OnZoom(PageZoom zoom); | 945 void OnZoom(PageZoom zoom); |
946 void OnZoomFactor(PageZoom zoom, int zoom_center_x, int zoom_center_y); | 946 void OnZoomFactor(PageZoom zoom, int zoom_center_x, int zoom_center_y); |
947 void OnEnableViewSourceMode(); | 947 void OnEnableViewSourceMode(); |
948 void OnDisownOpener(); | 948 void OnDisownOpener(); |
949 void OnWindowSnapshotCompleted(const int snapshot_id, | 949 void OnWindowSnapshotCompleted(const int snapshot_id, |
950 const gfx::Size& size, const std::vector<unsigned char>& png); | 950 const gfx::Size& size, const std::vector<unsigned char>& png); |
| 951 void OnForceRedraw(int request_id); |
951 #if defined(OS_ANDROID) | 952 #if defined(OS_ANDROID) |
952 void OnActivateNearestFindResult(int request_id, float x, float y); | 953 void OnActivateNearestFindResult(int request_id, float x, float y); |
953 void OnFindMatchRects(int current_version); | 954 void OnFindMatchRects(int current_version); |
954 void OnSelectPopupMenuItems(bool canceled, | 955 void OnSelectPopupMenuItems(bool canceled, |
955 const std::vector<int>& selected_indices); | 956 const std::vector<int>& selected_indices); |
956 void OnUndoScrollFocusedEditableNodeIntoRect(); | 957 void OnUndoScrollFocusedEditableNodeIntoRect(); |
957 void OnUpdateTopControlsState(bool enable_hiding, | 958 void OnUpdateTopControlsState(bool enable_hiding, |
958 bool enable_showing, | 959 bool enable_showing, |
959 bool animate); | 960 bool animate); |
960 void OnPauseVideo(); | 961 void OnPauseVideo(); |
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1446 // use the Observer interface to filter IPC messages and receive frame change | 1447 // use the Observer interface to filter IPC messages and receive frame change |
1447 // notifications. | 1448 // notifications. |
1448 // --------------------------------------------------------------------------- | 1449 // --------------------------------------------------------------------------- |
1449 | 1450 |
1450 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1451 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1451 }; | 1452 }; |
1452 | 1453 |
1453 } // namespace content | 1454 } // namespace content |
1454 | 1455 |
1455 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1456 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |