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

Unified Diff: chrome/browser/sessions/session_service_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
« no previous file with comments | « chrome/browser/sessions/session_service.cc ('k') | chrome/browser/sessions/session_types.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sessions/session_service_unittest.cc
===================================================================
--- chrome/browser/sessions/session_service_unittest.cc (revision 115900)
+++ chrome/browser/sessions/session_service_unittest.cc (working copy)
@@ -28,6 +28,8 @@
#include "content/public/browser/notification_service.h"
#include "testing/gtest/include/gtest/gtest.h"
+using content::NavigationEntry;
+
class SessionServiceTest : public BrowserWithTestWindowTest,
public content::NotificationObserver {
public:
@@ -69,8 +71,7 @@
const TabNavigation& navigation,
int index,
bool select) {
- scoped_ptr<content::NavigationEntry> entry(
- content::NavigationEntry::Create());
+ scoped_ptr<NavigationEntry> entry(NavigationEntry::Create());
entry->SetURL(navigation.virtual_url());
entry->SetReferrer(navigation.referrer());
entry->SetTitle(navigation.title());
« no previous file with comments | « chrome/browser/sessions/session_service.cc ('k') | chrome/browser/sessions/session_types.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698