| 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 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <deque> | 9 #include <deque> |
| 10 #include <map> | 10 #include <map> |
| (...skipping 758 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 769 void OnDragTargetDrop(const gfx::Point& client_pt, | 769 void OnDragTargetDrop(const gfx::Point& client_pt, |
| 770 const gfx::Point& screen_pt); | 770 const gfx::Point& screen_pt); |
| 771 void OnDragTargetDragEnter(const WebDropData& drop_data, | 771 void OnDragTargetDragEnter(const WebDropData& drop_data, |
| 772 const gfx::Point& client_pt, | 772 const gfx::Point& client_pt, |
| 773 const gfx::Point& screen_pt, | 773 const gfx::Point& screen_pt, |
| 774 WebKit::WebDragOperationsMask operations_allowed); | 774 WebKit::WebDragOperationsMask operations_allowed); |
| 775 void OnDragTargetDragLeave(); | 775 void OnDragTargetDragLeave(); |
| 776 void OnDragTargetDragOver(const gfx::Point& client_pt, | 776 void OnDragTargetDragOver(const gfx::Point& client_pt, |
| 777 const gfx::Point& screen_pt, | 777 const gfx::Point& screen_pt, |
| 778 WebKit::WebDragOperationsMask operations_allowed); | 778 WebKit::WebDragOperationsMask operations_allowed); |
| 779 void OnEnablePreferredSizeChangedMode(int flags); | 779 void OnEnablePreferredSizeChangedMode(); |
| 780 void OnEnumerateDirectoryResponse(int id, const std::vector<FilePath>& paths); | 780 void OnEnumerateDirectoryResponse(int id, const std::vector<FilePath>& paths); |
| 781 void OnExecuteEditCommand(const std::string& name, const std::string& value); | 781 void OnExecuteEditCommand(const std::string& name, const std::string& value); |
| 782 void OnFileChooserResponse(const std::vector<FilePath>& paths); | 782 void OnFileChooserResponse(const std::vector<FilePath>& paths); |
| 783 void OnFind(int request_id, const string16&, const WebKit::WebFindOptions&); | 783 void OnFind(int request_id, const string16&, const WebKit::WebFindOptions&); |
| 784 void OnFindReplyAck(); | 784 void OnFindReplyAck(); |
| 785 void OnGetAllSavableResourceLinksForCurrentPage(const GURL& page_url); | 785 void OnGetAllSavableResourceLinksForCurrentPage(const GURL& page_url); |
| 786 void OnGetSerializedHtmlDataForCurrentPageWithLocalLinks( | 786 void OnGetSerializedHtmlDataForCurrentPageWithLocalLinks( |
| 787 const std::vector<GURL>& links, | 787 const std::vector<GURL>& links, |
| 788 const std::vector<FilePath>& local_paths, | 788 const std::vector<FilePath>& local_paths, |
| 789 const FilePath& local_directory_name); | 789 const FilePath& local_directory_name); |
| (...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1217 // bunch of stuff, you should probably create a helper class and put your | 1217 // bunch of stuff, you should probably create a helper class and put your |
| 1218 // data and methods on that to avoid bloating RenderView more. You can | 1218 // data and methods on that to avoid bloating RenderView more. You can |
| 1219 // use the Observer interface to filter IPC messages and receive frame change | 1219 // use the Observer interface to filter IPC messages and receive frame change |
| 1220 // notifications. | 1220 // notifications. |
| 1221 // --------------------------------------------------------------------------- | 1221 // --------------------------------------------------------------------------- |
| 1222 | 1222 |
| 1223 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1223 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1224 }; | 1224 }; |
| 1225 | 1225 |
| 1226 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1226 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |