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