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

Unified Diff: chrome/browser/ui/browser.cc

Issue 14985014: Introduce content::PageState (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add comments to the top of page_state.h Created 7 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/browser.cc
diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc
index b35e758c1d368168c49e1c1c50d631e3e010ed4e..5769867c0d219a3ca59514f6b143657934b292ba 100644
--- a/chrome/browser/ui/browser.cc
+++ b/chrome/browser/ui/browser.cc
@@ -1412,9 +1412,9 @@ void Browser::ViewSourceForTab(WebContents* source, const GURL& page_url) {
void Browser::ViewSourceForFrame(WebContents* source,
const GURL& frame_url,
- const std::string& frame_content_state) {
+ const content::PageState& frame_page_state) {
DCHECK(source);
- chrome::ViewSource(this, source, frame_url, frame_content_state);
+ chrome::ViewSource(this, source, frame_url, frame_page_state);
}
void Browser::ShowRepostFormWarningDialog(WebContents* source) {

Powered by Google App Engine
This is Rietveld 408576698