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