| 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 897 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 908 IPC::PlatformFileForTransit file_for_transit, | 908 IPC::PlatformFileForTransit file_for_transit, |
| 909 int message_id); | 909 int message_id); |
| 910 void OnPpapiBrokerChannelCreated(int request_id, | 910 void OnPpapiBrokerChannelCreated(int request_id, |
| 911 base::ProcessId broker_pid, | 911 base::ProcessId broker_pid, |
| 912 const IPC::ChannelHandle& handle); | 912 const IPC::ChannelHandle& handle); |
| 913 void OnPpapiBrokerPermissionResult(int request_id, bool result); | 913 void OnPpapiBrokerPermissionResult(int request_id, bool result); |
| 914 void OnCancelDownload(int32 download_id); | 914 void OnCancelDownload(int32 download_id); |
| 915 void OnClearFocusedNode(); | 915 void OnClearFocusedNode(); |
| 916 void OnClosePage(); | 916 void OnClosePage(); |
| 917 void OnContextMenuClosed(const CustomContextMenuContext& custom_context); | 917 void OnContextMenuClosed(const CustomContextMenuContext& custom_context); |
| 918 void OnShowContextMenu(); |
| 918 void OnCopy(); | 919 void OnCopy(); |
| 919 void OnCopyImageAt(int x, int y); | 920 void OnCopyImageAt(int x, int y); |
| 920 void OnCut(); | 921 void OnCut(); |
| 921 void OnCSSInsertRequest(const string16& frame_xpath, | 922 void OnCSSInsertRequest(const string16& frame_xpath, |
| 922 const std::string& css); | 923 const std::string& css); |
| 923 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context, | 924 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context, |
| 924 unsigned action); | 925 unsigned action); |
| 925 void OnDelete(); | 926 void OnDelete(); |
| 926 void OnSetName(const std::string& name); | 927 void OnSetName(const std::string& name); |
| 927 void OnDeterminePageLanguage(); | 928 void OnDeterminePageLanguage(); |
| (...skipping 642 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1570 // use the Observer interface to filter IPC messages and receive frame change | 1571 // use the Observer interface to filter IPC messages and receive frame change |
| 1571 // notifications. | 1572 // notifications. |
| 1572 // --------------------------------------------------------------------------- | 1573 // --------------------------------------------------------------------------- |
| 1573 | 1574 |
| 1574 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1575 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1575 }; | 1576 }; |
| 1576 | 1577 |
| 1577 } // namespace content | 1578 } // namespace content |
| 1578 | 1579 |
| 1579 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1580 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |