Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(457)

Side by Side Diff: content/renderer/render_view_impl.h

Issue 1308113008: OOPIFs: Transitioning Get/Send...SavableResourceLinks away from RenderViewHost. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@page-serialization-test
Patch Set: Fixed savable_resources_browsertest.cc to use RenderFrame rather than RenderView. Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/renderer/render_frame_impl.cc ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « content/renderer/render_frame_impl.cc ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698