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 1001 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1012 | 1012 |
1013 #if defined(OS_ANDROID) | 1013 #if defined(OS_ANDROID) |
1014 void OnActivateNearestFindResult(int request_id, float x, float y); | 1014 void OnActivateNearestFindResult(int request_id, float x, float y); |
1015 void OnFindMatchRects(int current_version); | 1015 void OnFindMatchRects(int current_version); |
1016 void OnSelectPopupMenuItems(bool canceled, | 1016 void OnSelectPopupMenuItems(bool canceled, |
1017 const std::vector<int>& selected_indices); | 1017 const std::vector<int>& selected_indices); |
1018 void OnUndoScrollFocusedEditableNodeIntoRect(); | 1018 void OnUndoScrollFocusedEditableNodeIntoRect(); |
1019 void OnUpdateTopControlsState(bool enable_hiding, | 1019 void OnUpdateTopControlsState(bool enable_hiding, |
1020 bool enable_showing, | 1020 bool enable_showing, |
1021 bool animate); | 1021 bool animate); |
| 1022 void OnPauseVideo(); |
| 1023 |
1022 #elif defined(OS_MACOSX) | 1024 #elif defined(OS_MACOSX) |
1023 void OnCopyToFindPboard(); | 1025 void OnCopyToFindPboard(); |
1024 void OnPluginImeCompositionCompleted(const string16& text, int plugin_id); | 1026 void OnPluginImeCompositionCompleted(const string16& text, int plugin_id); |
1025 void OnSelectPopupMenuItem(int selected_index); | 1027 void OnSelectPopupMenuItem(int selected_index); |
1026 void OnSetInLiveResize(bool in_live_resize); | 1028 void OnSetInLiveResize(bool in_live_resize); |
1027 void OnSetWindowVisibility(bool visible); | 1029 void OnSetWindowVisibility(bool visible); |
1028 void OnWindowFrameChanged(const gfx::Rect& window_frame, | 1030 void OnWindowFrameChanged(const gfx::Rect& window_frame, |
1029 const gfx::Rect& view_frame); | 1031 const gfx::Rect& view_frame); |
1030 #endif | 1032 #endif |
1031 | 1033 |
(...skipping 492 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 |