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

Unified Diff: components/sessions/core/in_memory_tab_restore_service.cc

Issue 1350653004: [sessions] Properly namespace recently-componentized TabRestore code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Mac Created 5 years, 3 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
« no previous file with comments | « components/sessions/core/in_memory_tab_restore_service.h ('k') | components/sessions/core/live_tab.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sessions/core/in_memory_tab_restore_service.cc
diff --git a/components/sessions/core/in_memory_tab_restore_service.cc b/components/sessions/core/in_memory_tab_restore_service.cc
index e480f7d1323ff99de361c9cb1b571f2f91976bd5..c5d7641f29b42eb45ab33924b66123bea1263d57 100644
--- a/components/sessions/core/in_memory_tab_restore_service.cc
+++ b/components/sessions/core/in_memory_tab_restore_service.cc
@@ -8,10 +8,10 @@
#include "base/compiler_specific.h"
-using sessions::LiveTab;
+namespace sessions {
InMemoryTabRestoreService::InMemoryTabRestoreService(
- scoped_ptr<sessions::TabRestoreServiceClient> client,
+ scoped_ptr<TabRestoreServiceClient> client,
TabRestoreService::TimeFactory* time_factory)
: client_(client.Pass()),
helper_(this, NULL, client_.get(), time_factory) {}
@@ -86,3 +86,5 @@ void InMemoryTabRestoreService::DeleteLastSession() {
void InMemoryTabRestoreService::Shutdown() {
}
+
+} // namespace
« no previous file with comments | « components/sessions/core/in_memory_tab_restore_service.h ('k') | components/sessions/core/live_tab.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698