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 748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
759 void OnActivateNearestFindResult(int request_id, float x, float y); | 759 void OnActivateNearestFindResult(int request_id, float x, float y); |
760 void OnFindMatchRects(int current_version); | 760 void OnFindMatchRects(int current_version); |
761 void OnSelectPopupMenuItems(bool canceled, | 761 void OnSelectPopupMenuItems(bool canceled, |
762 const std::vector<int>& selected_indices); | 762 const std::vector<int>& selected_indices); |
763 void OnUndoScrollFocusedEditableNodeIntoRect(); | 763 void OnUndoScrollFocusedEditableNodeIntoRect(); |
764 void OnUpdateTopControlsState(bool enable_hiding, | 764 void OnUpdateTopControlsState(bool enable_hiding, |
765 bool enable_showing, | 765 bool enable_showing, |
766 bool animate); | 766 bool animate); |
767 void OnExtractSmartClipData(const gfx::Rect& rect); | 767 void OnExtractSmartClipData(const gfx::Rect& rect); |
768 #elif defined(OS_MACOSX) | 768 #elif defined(OS_MACOSX) |
| 769 void OnGetRenderedText(); |
769 void OnPluginImeCompositionCompleted(const base::string16& text, | 770 void OnPluginImeCompositionCompleted(const base::string16& text, |
770 int plugin_id); | 771 int plugin_id); |
771 void OnSelectPopupMenuItem(int selected_index); | 772 void OnSelectPopupMenuItem(int selected_index); |
772 void OnSetInLiveResize(bool in_live_resize); | 773 void OnSetInLiveResize(bool in_live_resize); |
773 void OnSetWindowVisibility(bool visible); | 774 void OnSetWindowVisibility(bool visible); |
774 void OnWindowFrameChanged(const gfx::Rect& window_frame, | 775 void OnWindowFrameChanged(const gfx::Rect& window_frame, |
775 const gfx::Rect& view_frame); | 776 const gfx::Rect& view_frame); |
776 #endif | 777 #endif |
777 | 778 |
778 // Adding a new message handler? Please add it in alphabetical order above | 779 // Adding a new message handler? Please add it in alphabetical order above |
(...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1177 // use the Observer interface to filter IPC messages and receive frame change | 1178 // use the Observer interface to filter IPC messages and receive frame change |
1178 // notifications. | 1179 // notifications. |
1179 // --------------------------------------------------------------------------- | 1180 // --------------------------------------------------------------------------- |
1180 | 1181 |
1181 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1182 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1182 }; | 1183 }; |
1183 | 1184 |
1184 } // namespace content | 1185 } // namespace content |
1185 | 1186 |
1186 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1187 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |