| 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 904 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 915 IPC::PlatformFileForTransit file_for_transit, | 915 IPC::PlatformFileForTransit file_for_transit, |
| 916 int message_id); | 916 int message_id); |
| 917 void OnPpapiBrokerChannelCreated(int request_id, | 917 void OnPpapiBrokerChannelCreated(int request_id, |
| 918 base::ProcessId broker_pid, | 918 base::ProcessId broker_pid, |
| 919 const IPC::ChannelHandle& handle); | 919 const IPC::ChannelHandle& handle); |
| 920 void OnPpapiBrokerPermissionResult(int request_id, bool result); | 920 void OnPpapiBrokerPermissionResult(int request_id, bool result); |
| 921 void OnCancelDownload(int32 download_id); | 921 void OnCancelDownload(int32 download_id); |
| 922 void OnClearFocusedNode(); | 922 void OnClearFocusedNode(); |
| 923 void OnClosePage(); | 923 void OnClosePage(); |
| 924 void OnContextMenuClosed(const CustomContextMenuContext& custom_context); | 924 void OnContextMenuClosed(const CustomContextMenuContext& custom_context); |
| 925 void OnShowContextMenu(); |
| 925 void OnCopy(); | 926 void OnCopy(); |
| 926 void OnCopyImageAt(int x, int y); | 927 void OnCopyImageAt(int x, int y); |
| 927 void OnCut(); | 928 void OnCut(); |
| 928 void OnCSSInsertRequest(const string16& frame_xpath, | 929 void OnCSSInsertRequest(const string16& frame_xpath, |
| 929 const std::string& css); | 930 const std::string& css); |
| 930 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context, | 931 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context, |
| 931 unsigned action); | 932 unsigned action); |
| 932 void OnDelete(); | 933 void OnDelete(); |
| 933 void OnSetName(const std::string& name); | 934 void OnSetName(const std::string& name); |
| 934 void OnDeterminePageLanguage(); | 935 void OnDeterminePageLanguage(); |
| (...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1579 // use the Observer interface to filter IPC messages and receive frame change | 1580 // use the Observer interface to filter IPC messages and receive frame change |
| 1580 // notifications. | 1581 // notifications. |
| 1581 // --------------------------------------------------------------------------- | 1582 // --------------------------------------------------------------------------- |
| 1582 | 1583 |
| 1583 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1584 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1584 }; | 1585 }; |
| 1585 | 1586 |
| 1586 } // namespace content | 1587 } // namespace content |
| 1587 | 1588 |
| 1588 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1589 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |