| 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 900 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 911 IPC::PlatformFileForTransit file_for_transit, | 911 IPC::PlatformFileForTransit file_for_transit, |
| 912 int message_id); | 912 int message_id); |
| 913 void OnPpapiBrokerChannelCreated(int request_id, | 913 void OnPpapiBrokerChannelCreated(int request_id, |
| 914 base::ProcessId broker_pid, | 914 base::ProcessId broker_pid, |
| 915 const IPC::ChannelHandle& handle); | 915 const IPC::ChannelHandle& handle); |
| 916 void OnPpapiBrokerPermissionResult(int request_id, bool result); | 916 void OnPpapiBrokerPermissionResult(int request_id, bool result); |
| 917 void OnCancelDownload(int32 download_id); | 917 void OnCancelDownload(int32 download_id); |
| 918 void OnClearFocusedNode(); | 918 void OnClearFocusedNode(); |
| 919 void OnClosePage(); | 919 void OnClosePage(); |
| 920 void OnContextMenuClosed(const CustomContextMenuContext& custom_context); | 920 void OnContextMenuClosed(const CustomContextMenuContext& custom_context); |
| 921 void OnShowContextMenu(); |
| 921 void OnCopy(); | 922 void OnCopy(); |
| 922 void OnCopyImageAt(int x, int y); | 923 void OnCopyImageAt(int x, int y); |
| 923 void OnCut(); | 924 void OnCut(); |
| 924 void OnCSSInsertRequest(const string16& frame_xpath, | 925 void OnCSSInsertRequest(const string16& frame_xpath, |
| 925 const std::string& css); | 926 const std::string& css); |
| 926 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context, | 927 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context, |
| 927 unsigned action); | 928 unsigned action); |
| 928 void OnDelete(); | 929 void OnDelete(); |
| 929 void OnSetName(const std::string& name); | 930 void OnSetName(const std::string& name); |
| 930 void OnDeterminePageLanguage(); | 931 void OnDeterminePageLanguage(); |
| (...skipping 647 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 } // namespace content | 1586 } // namespace content |
| 1586 | 1587 |
| 1587 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1588 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |