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 816 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 827 void OnActivateNearestFindResult(int request_id, float x, float y); | 827 void OnActivateNearestFindResult(int request_id, float x, float y); |
| 828 void OnFindMatchRects(int current_version); | 828 void OnFindMatchRects(int current_version); |
| 829 void OnSelectPopupMenuItems(bool canceled, | 829 void OnSelectPopupMenuItems(bool canceled, |
| 830 const std::vector<int>& selected_indices); | 830 const std::vector<int>& selected_indices); |
| 831 void OnUndoScrollFocusedEditableNodeIntoRect(); | 831 void OnUndoScrollFocusedEditableNodeIntoRect(); |
| 832 void OnUpdateTopControlsState(bool enable_hiding, | 832 void OnUpdateTopControlsState(bool enable_hiding, |
| 833 bool enable_showing, | 833 bool enable_showing, |
| 834 bool animate); | 834 bool animate); |
| 835 void OnPauseVideo(); | 835 void OnPauseVideo(); |
| 836 void OnExtractSmartClipData(const gfx::Rect& rect); | 836 void OnExtractSmartClipData(const gfx::Rect& rect); |
| 837 void updateSmartClipDataResult(const blink::WebString& text, | |
|
jam
2014/04/30 16:05:47
nit: put this in the right order (i.e. see where t
AviD
2014/05/02 15:04:45
Removed this interface.
| |
| 838 const blink::WebRect& rect); | |
| 837 void GetSelectionRootBounds(gfx::Rect* bounds) const; | 839 void GetSelectionRootBounds(gfx::Rect* bounds) const; |
| 838 #elif defined(OS_MACOSX) | 840 #elif defined(OS_MACOSX) |
| 839 void OnPluginImeCompositionCompleted(const base::string16& text, | 841 void OnPluginImeCompositionCompleted(const base::string16& text, |
| 840 int plugin_id); | 842 int plugin_id); |
| 841 void OnSelectPopupMenuItem(int selected_index); | 843 void OnSelectPopupMenuItem(int selected_index); |
| 842 void OnSetInLiveResize(bool in_live_resize); | 844 void OnSetInLiveResize(bool in_live_resize); |
| 843 void OnSetWindowVisibility(bool visible); | 845 void OnSetWindowVisibility(bool visible); |
| 844 void OnWindowFrameChanged(const gfx::Rect& window_frame, | 846 void OnWindowFrameChanged(const gfx::Rect& window_frame, |
| 845 const gfx::Rect& view_frame); | 847 const gfx::Rect& view_frame); |
| 846 #endif | 848 #endif |
| (...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1309 // use the Observer interface to filter IPC messages and receive frame change | 1311 // use the Observer interface to filter IPC messages and receive frame change |
| 1310 // notifications. | 1312 // notifications. |
| 1311 // --------------------------------------------------------------------------- | 1313 // --------------------------------------------------------------------------- |
| 1312 | 1314 |
| 1313 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1315 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1314 }; | 1316 }; |
| 1315 | 1317 |
| 1316 } // namespace content | 1318 } // namespace content |
| 1317 | 1319 |
| 1318 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1320 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |