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

Unified Diff: chrome/browser/extensions/extension_tabs_module.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/extensions/extension_tabs_module.cc
===================================================================
--- chrome/browser/extensions/extension_tabs_module.cc (revision 115900)
+++ chrome/browser/extensions/extension_tabs_module.cc (working copy)
@@ -60,6 +60,7 @@
namespace keys = extension_tabs_module_constants;
namespace errors = extension_manifest_errors;
+using content::NavigationEntry;
using content::OpenURLParams;
using content::Referrer;
using content::WebContents;
@@ -1377,8 +1378,7 @@
TabContents* tab_contents = contents->tab_contents();
if (tab_contents->ShowingInterstitialPage()) {
// This does as same as Browser::ReloadInternal.
- content::NavigationEntry* entry =
- tab_contents->GetController().GetActiveEntry();
+ NavigationEntry* entry = tab_contents->GetController().GetActiveEntry();
OpenURLParams params(entry->GetURL(), Referrer(), CURRENT_TAB,
content::PAGE_TRANSITION_RELOAD, false);
GetCurrentBrowser()->OpenURL(params);
« no previous file with comments | « chrome/browser/extensions/extension_tab_util.cc ('k') | chrome/browser/extensions/extension_url_rewrite_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698