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 1023 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1034 int route_id, | 1034 int route_id, |
1035 const std::string& frame_tree); | 1035 const std::string& frame_tree); |
1036 | 1036 |
1037 #if defined(OS_ANDROID) | 1037 #if defined(OS_ANDROID) |
1038 void OnActivateNearestFindResult(int request_id, float x, float y); | 1038 void OnActivateNearestFindResult(int request_id, float x, float y); |
1039 void OnFindMatchRects(int current_version); | 1039 void OnFindMatchRects(int current_version); |
1040 void OnSelectPopupMenuItems(bool canceled, | 1040 void OnSelectPopupMenuItems(bool canceled, |
1041 const std::vector<int>& selected_indices); | 1041 const std::vector<int>& selected_indices); |
1042 void OnUndoScrollFocusedEditableNodeIntoRect(); | 1042 void OnUndoScrollFocusedEditableNodeIntoRect(); |
1043 void OnEnableHidingTopControls(bool enable); | 1043 void OnEnableHidingTopControls(bool enable); |
| 1044 void OnShowTopControls(bool show); |
1044 #elif defined(OS_MACOSX) | 1045 #elif defined(OS_MACOSX) |
1045 void OnCopyToFindPboard(); | 1046 void OnCopyToFindPboard(); |
1046 void OnPluginImeCompositionCompleted(const string16& text, int plugin_id); | 1047 void OnPluginImeCompositionCompleted(const string16& text, int plugin_id); |
1047 void OnSelectPopupMenuItem(int selected_index); | 1048 void OnSelectPopupMenuItem(int selected_index); |
1048 void OnSetInLiveResize(bool in_live_resize); | 1049 void OnSetInLiveResize(bool in_live_resize); |
1049 void OnSetWindowVisibility(bool visible); | 1050 void OnSetWindowVisibility(bool visible); |
1050 void OnWindowFrameChanged(const gfx::Rect& window_frame, | 1051 void OnWindowFrameChanged(const gfx::Rect& window_frame, |
1051 const gfx::Rect& view_frame); | 1052 const gfx::Rect& view_frame); |
1052 #endif | 1053 #endif |
1053 | 1054 |
(...skipping 519 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1573 // use the Observer interface to filter IPC messages and receive frame change | 1574 // use the Observer interface to filter IPC messages and receive frame change |
1574 // notifications. | 1575 // notifications. |
1575 // --------------------------------------------------------------------------- | 1576 // --------------------------------------------------------------------------- |
1576 | 1577 |
1577 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1578 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1578 }; | 1579 }; |
1579 | 1580 |
1580 } // namespace content | 1581 } // namespace content |
1581 | 1582 |
1582 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1583 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |