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

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

Issue 8956059: Rename NavigationController to NavigationControllerImpl and put it into the content namespace. Al... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years 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/webui/cloud_print_signin_dialog.cc
===================================================================
--- chrome/browser/ui/webui/cloud_print_signin_dialog.cc (revision 115900)
+++ chrome/browser/ui/webui/cloud_print_signin_dialog.cc (working copy)
@@ -28,6 +28,7 @@
#include "content/public/browser/notification_types.h"
using content::BrowserThread;
+using content::NavigationEntry;
using content::WebContents;
// This module implements a sign in dialog for cloud print.
@@ -64,7 +65,7 @@
if (web_ui_ && web_ui_->tab_contents()) {
NavigationController* controller =
&web_ui_->tab_contents()->GetController();
- content::NavigationEntry* pending_entry = controller->GetPendingEntry();
+ NavigationEntry* pending_entry = controller->GetPendingEntry();
if (pending_entry)
pending_entry->SetURL(CloudPrintURL(
Profile::FromWebUI(web_ui_)).GetCloudPrintSigninURL());
« no previous file with comments | « chrome/browser/ui/views/location_bar/click_handler.cc ('k') | chrome/browser/ui/webui/print_preview_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698