| 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 1032 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1043 | 1043 |
| 1044 #if defined(OS_ANDROID) | 1044 #if defined(OS_ANDROID) |
| 1045 void OnActivateNearestFindResult(int request_id, float x, float y); | 1045 void OnActivateNearestFindResult(int request_id, float x, float y); |
| 1046 void OnFindMatchRects(int current_version); | 1046 void OnFindMatchRects(int current_version); |
| 1047 void OnSelectPopupMenuItems(bool canceled, | 1047 void OnSelectPopupMenuItems(bool canceled, |
| 1048 const std::vector<int>& selected_indices); | 1048 const std::vector<int>& selected_indices); |
| 1049 void OnSynchronousFind(int request_id, | 1049 void OnSynchronousFind(int request_id, |
| 1050 const string16& search_string, | 1050 const string16& search_string, |
| 1051 const WebKit::WebFindOptions& options, | 1051 const WebKit::WebFindOptions& options, |
| 1052 IPC::Message* reply_msg); | 1052 IPC::Message* reply_msg); |
| 1053 void OnUndoScrollFocusedEditableNodeIntoRect(); |
| 1053 #elif defined(OS_MACOSX) | 1054 #elif defined(OS_MACOSX) |
| 1054 void OnCopyToFindPboard(); | 1055 void OnCopyToFindPboard(); |
| 1055 void OnPluginImeCompositionCompleted(const string16& text, int plugin_id); | 1056 void OnPluginImeCompositionCompleted(const string16& text, int plugin_id); |
| 1056 CONTENT_EXPORT void OnSelectPopupMenuItem(int selected_index); | 1057 CONTENT_EXPORT void OnSelectPopupMenuItem(int selected_index); |
| 1057 void OnSetInLiveResize(bool in_live_resize); | 1058 void OnSetInLiveResize(bool in_live_resize); |
| 1058 void OnSetWindowVisibility(bool visible); | 1059 void OnSetWindowVisibility(bool visible); |
| 1059 void OnWindowFrameChanged(const gfx::Rect& window_frame, | 1060 void OnWindowFrameChanged(const gfx::Rect& window_frame, |
| 1060 const gfx::Rect& view_frame); | 1061 const gfx::Rect& view_frame); |
| 1061 #endif | 1062 #endif |
| 1062 | 1063 |
| (...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1576 // bunch of stuff, you should probably create a helper class and put your | 1577 // bunch of stuff, you should probably create a helper class and put your |
| 1577 // data and methods on that to avoid bloating RenderView more. You can | 1578 // data and methods on that to avoid bloating RenderView more. You can |
| 1578 // use the Observer interface to filter IPC messages and receive frame change | 1579 // use the Observer interface to filter IPC messages and receive frame change |
| 1579 // notifications. | 1580 // notifications. |
| 1580 // --------------------------------------------------------------------------- | 1581 // --------------------------------------------------------------------------- |
| 1581 | 1582 |
| 1582 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1583 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1583 }; | 1584 }; |
| 1584 | 1585 |
| 1585 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1586 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |