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 626 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
637 void OnEnablePreferredSizeChangedMode(); | 637 void OnEnablePreferredSizeChangedMode(); |
638 void OnEnableAutoResize(const gfx::Size& min_size, const gfx::Size& max_size); | 638 void OnEnableAutoResize(const gfx::Size& min_size, const gfx::Size& max_size); |
639 void OnDisableAutoResize(const gfx::Size& new_size); | 639 void OnDisableAutoResize(const gfx::Size& new_size); |
640 void OnEnumerateDirectoryResponse(int id, | 640 void OnEnumerateDirectoryResponse(int id, |
641 const std::vector<base::FilePath>& paths); | 641 const std::vector<base::FilePath>& paths); |
642 void OnFileChooserResponse( | 642 void OnFileChooserResponse( |
643 const std::vector<content::FileChooserFileInfo>& files); | 643 const std::vector<content::FileChooserFileInfo>& files); |
644 void OnFind(int request_id, | 644 void OnFind(int request_id, |
645 const base::string16&, | 645 const base::string16&, |
646 const blink::WebFindOptions&); | 646 const blink::WebFindOptions&); |
647 void OnGetAllSavableResourceLinksForCurrentPage(const GURL& page_url); | |
648 void OnGetSerializedHtmlDataForCurrentPageWithLocalLinks( | 647 void OnGetSerializedHtmlDataForCurrentPageWithLocalLinks( |
649 const std::vector<GURL>& links, | 648 const std::vector<GURL>& links, |
650 const std::vector<base::FilePath>& local_paths, | 649 const std::vector<base::FilePath>& local_paths, |
651 const base::FilePath& local_directory_name); | 650 const base::FilePath& local_directory_name); |
652 void OnMediaPlayerActionAt(const gfx::Point& location, | 651 void OnMediaPlayerActionAt(const gfx::Point& location, |
653 const blink::WebMediaPlayerAction& action); | 652 const blink::WebMediaPlayerAction& action); |
654 void OnPluginActionAt(const gfx::Point& location, | 653 void OnPluginActionAt(const gfx::Point& location, |
655 const blink::WebPluginAction& action); | 654 const blink::WebPluginAction& action); |
656 void OnMoveOrResizeStarted(); | 655 void OnMoveOrResizeStarted(); |
657 void OnReleaseDisambiguationPopupBitmap(const cc::SharedBitmapId& id); | 656 void OnReleaseDisambiguationPopupBitmap(const cc::SharedBitmapId& id); |
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1024 // use the Observer interface to filter IPC messages and receive frame change | 1023 // use the Observer interface to filter IPC messages and receive frame change |
1025 // notifications. | 1024 // notifications. |
1026 // --------------------------------------------------------------------------- | 1025 // --------------------------------------------------------------------------- |
1027 | 1026 |
1028 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1027 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1029 }; | 1028 }; |
1030 | 1029 |
1031 } // namespace content | 1030 } // namespace content |
1032 | 1031 |
1033 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1032 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |