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