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

Unified Diff: chrome/browser/geolocation/geolocation_settings_state_unittest.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/geolocation/geolocation_settings_state_unittest.cc
===================================================================
--- chrome/browser/geolocation/geolocation_settings_state_unittest.cc (revision 115900)
+++ chrome/browser/geolocation/geolocation_settings_state_unittest.cc (working copy)
@@ -14,6 +14,7 @@
#include "testing/gtest/include/gtest/gtest.h"
using content::BrowserThread;
+using content::NavigationEntry;
namespace {
@@ -33,8 +34,7 @@
GeolocationSettingsState state(&profile);
GURL url_0("http://www.example.com");
- scoped_ptr<content::NavigationEntry> entry(
- content::NavigationEntry::Create());
+ scoped_ptr<NavigationEntry> entry(NavigationEntry::Create());
entry->SetURL(url_0);
content::LoadCommittedDetails load_committed_details;
load_committed_details.entry = entry.get();
@@ -139,8 +139,7 @@
GeolocationSettingsState state(&profile);
GURL url_0("http://www.example.com");
- scoped_ptr<content::NavigationEntry> entry(
- content::NavigationEntry::Create());
+ scoped_ptr<NavigationEntry> entry(NavigationEntry::Create());
entry->SetURL(url_0);
content::LoadCommittedDetails load_committed_details;
load_committed_details.entry = entry.get();
« no previous file with comments | « chrome/browser/geolocation/chrome_geolocation_permission_context.cc ('k') | chrome/browser/history/history_tab_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698