Chromium Code Reviews| 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 977 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 988 #if defined(OS_ANDROID) | 988 #if defined(OS_ANDROID) |
| 989 void OnActivateNearestFindResult(int request_id, float x, float y); | 989 void OnActivateNearestFindResult(int request_id, float x, float y); |
| 990 void OnFindMatchRects(int current_version); | 990 void OnFindMatchRects(int current_version); |
| 991 void OnSelectPopupMenuItems(bool canceled, | 991 void OnSelectPopupMenuItems(bool canceled, |
| 992 const std::vector<int>& selected_indices); | 992 const std::vector<int>& selected_indices); |
| 993 void OnUndoScrollFocusedEditableNodeIntoRect(); | 993 void OnUndoScrollFocusedEditableNodeIntoRect(); |
| 994 void OnUpdateTopControlsState(bool enable_hiding, | 994 void OnUpdateTopControlsState(bool enable_hiding, |
| 995 bool enable_showing, | 995 bool enable_showing, |
| 996 bool animate); | 996 bool animate); |
| 997 void OnPauseVideo(); | 997 void OnPauseVideo(); |
| 998 void OnResumeVideo(); | |
|
qinmin
2013/12/06 00:10:13
s/OnResumeVideo/OnResumeFullscreenVideo/
need to b
| |
| 998 | 999 |
| 999 #elif defined(OS_MACOSX) | 1000 #elif defined(OS_MACOSX) |
| 1000 void OnCopyToFindPboard(); | 1001 void OnCopyToFindPboard(); |
| 1001 void OnPluginImeCompositionCompleted(const base::string16& text, | 1002 void OnPluginImeCompositionCompleted(const base::string16& text, |
| 1002 int plugin_id); | 1003 int plugin_id); |
| 1003 void OnSelectPopupMenuItem(int selected_index); | 1004 void OnSelectPopupMenuItem(int selected_index); |
| 1004 void OnSetInLiveResize(bool in_live_resize); | 1005 void OnSetInLiveResize(bool in_live_resize); |
| 1005 void OnSetWindowVisibility(bool visible); | 1006 void OnSetWindowVisibility(bool visible); |
| 1006 void OnWindowFrameChanged(const gfx::Rect& window_frame, | 1007 void OnWindowFrameChanged(const gfx::Rect& window_frame, |
| 1007 const gfx::Rect& view_frame); | 1008 const gfx::Rect& view_frame); |
| (...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1530 // use the Observer interface to filter IPC messages and receive frame change | 1531 // use the Observer interface to filter IPC messages and receive frame change |
| 1531 // notifications. | 1532 // notifications. |
| 1532 // --------------------------------------------------------------------------- | 1533 // --------------------------------------------------------------------------- |
| 1533 | 1534 |
| 1534 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1535 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1535 }; | 1536 }; |
| 1536 | 1537 |
| 1537 } // namespace content | 1538 } // namespace content |
| 1538 | 1539 |
| 1539 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1540 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |