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 992 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1003 | 1003 |
1004 void OnZoom(PageZoom zoom); | 1004 void OnZoom(PageZoom zoom); |
1005 void OnZoomFactor(PageZoom zoom, int zoom_center_x, int zoom_center_y); | 1005 void OnZoomFactor(PageZoom zoom, int zoom_center_x, int zoom_center_y); |
1006 | 1006 |
1007 void OnEnableViewSourceMode(); | 1007 void OnEnableViewSourceMode(); |
1008 | 1008 |
1009 void OnJavaBridgeInit(); | 1009 void OnJavaBridgeInit(); |
1010 | 1010 |
1011 void OnDisownOpener(); | 1011 void OnDisownOpener(); |
1012 | 1012 |
| 1013 void OnPauseVideo(); |
| 1014 |
1013 #if defined(OS_ANDROID) | 1015 #if defined(OS_ANDROID) |
1014 void OnActivateNearestFindResult(int request_id, float x, float y); | 1016 void OnActivateNearestFindResult(int request_id, float x, float y); |
1015 void OnFindMatchRects(int current_version); | 1017 void OnFindMatchRects(int current_version); |
1016 void OnSelectPopupMenuItems(bool canceled, | 1018 void OnSelectPopupMenuItems(bool canceled, |
1017 const std::vector<int>& selected_indices); | 1019 const std::vector<int>& selected_indices); |
1018 void OnUndoScrollFocusedEditableNodeIntoRect(); | 1020 void OnUndoScrollFocusedEditableNodeIntoRect(); |
1019 void OnUpdateTopControlsState(bool enable_hiding, | 1021 void OnUpdateTopControlsState(bool enable_hiding, |
1020 bool enable_showing, | 1022 bool enable_showing, |
1021 bool animate); | 1023 bool animate); |
1022 #elif defined(OS_MACOSX) | 1024 #elif defined(OS_MACOSX) |
(...skipping 501 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1524 // use the Observer interface to filter IPC messages and receive frame change | 1526 // use the Observer interface to filter IPC messages and receive frame change |
1525 // notifications. | 1527 // notifications. |
1526 // --------------------------------------------------------------------------- | 1528 // --------------------------------------------------------------------------- |
1527 | 1529 |
1528 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1530 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1529 }; | 1531 }; |
1530 | 1532 |
1531 } // namespace content | 1533 } // namespace content |
1532 | 1534 |
1533 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1535 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |