| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 CHROME_RENDERER_RENDER_VIEW_H_ | 5 #ifndef CHROME_RENDERER_RENDER_VIEW_H_ |
| 6 #define CHROME_RENDERER_RENDER_VIEW_H_ | 6 #define CHROME_RENDERER_RENDER_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <deque> | 9 #include <deque> |
| 10 #include <map> | 10 #include <map> |
| (...skipping 875 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 886 void OnNavigate(const ViewMsg_Navigate_Params& params); | 886 void OnNavigate(const ViewMsg_Navigate_Params& params); |
| 887 void OnNotifyRendererViewType(ViewType::Type view_type); | 887 void OnNotifyRendererViewType(ViewType::Type view_type); |
| 888 void OnPaste(); | 888 void OnPaste(); |
| 889 #if defined(OS_MACOSX) | 889 #if defined(OS_MACOSX) |
| 890 void OnPluginImeCompositionCompleted(const string16& text, int plugin_id); | 890 void OnPluginImeCompositionCompleted(const string16& text, int plugin_id); |
| 891 #endif | 891 #endif |
| 892 void OnPrintingDone(int document_cookie, bool success); | 892 void OnPrintingDone(int document_cookie, bool success); |
| 893 void OnPrintPages(); | 893 void OnPrintPages(); |
| 894 void OnPrintPreview(); | 894 void OnPrintPreview(); |
| 895 void OnPrintNodeUnderContextMenu(); | 895 void OnPrintNodeUnderContextMenu(); |
| 896 void OnPrintForPrintPreview(); |
| 896 void OnRedo(); | 897 void OnRedo(); |
| 897 void OnReloadFrame(); | 898 void OnReloadFrame(); |
| 898 void OnReplace(const string16& text); | 899 void OnReplace(const string16& text); |
| 899 void OnReservePageIDRange(int size_of_range); | 900 void OnReservePageIDRange(int size_of_range); |
| 900 void OnResetPageEncodingToDefault(); | 901 void OnResetPageEncodingToDefault(); |
| 901 void OnScriptEvalRequest(const string16& frame_xpath, | 902 void OnScriptEvalRequest(const string16& frame_xpath, |
| 902 const string16& jscript, | 903 const string16& jscript, |
| 903 int id, | 904 int id, |
| 904 bool notify_result); | 905 bool notify_result); |
| 905 void OnSelectAll(); | 906 void OnSelectAll(); |
| (...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1454 // bunch of stuff, you should probably create a helper class and put your | 1455 // bunch of stuff, you should probably create a helper class and put your |
| 1455 // data and methods on that to avoid bloating RenderView more. You can use | 1456 // data and methods on that to avoid bloating RenderView more. You can use |
| 1456 // the Observer interface to filter IPC messages and receive frame change | 1457 // the Observer interface to filter IPC messages and receive frame change |
| 1457 // notifications. | 1458 // notifications. |
| 1458 // --------------------------------------------------------------------------- | 1459 // --------------------------------------------------------------------------- |
| 1459 | 1460 |
| 1460 DISALLOW_COPY_AND_ASSIGN(RenderView); | 1461 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 1461 }; | 1462 }; |
| 1462 | 1463 |
| 1463 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 1464 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |