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

Unified Diff: components/sync_sessions/synced_tab_delegate.h

Issue 2343463003: [Sync] Fix namespaces for the sync_sessions component. (Closed)
Patch Set: Fix gn. Created 4 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
Index: components/sync_sessions/synced_tab_delegate.h
diff --git a/components/sync_sessions/synced_tab_delegate.h b/components/sync_sessions/synced_tab_delegate.h
index def7256dd32939cdea8c09070b9f497da7f0cd9b..dcb306fa1c2737e8536c813731115970a5361eed 100644
--- a/components/sync_sessions/synced_tab_delegate.h
+++ b/components/sync_sessions/synced_tab_delegate.h
@@ -19,7 +19,7 @@ namespace sync_sessions {
class SyncSessionsClient;
}
-namespace browser_sync {
+namespace sync_sessions {
// A SyncedTabDelegate is used to insulate the sync code from depending
// directly on WebContents, NavigationController, and the extensions TabHelper.
@@ -54,8 +54,7 @@ class SyncedTabDelegate {
// Session sync related methods.
virtual int GetSyncId() const = 0;
virtual void SetSyncId(int sync_id) = 0;
- virtual bool ShouldSync(
- sync_sessions::SyncSessionsClient* sessions_client) = 0;
+ virtual bool ShouldSync(SyncSessionsClient* sessions_client) = 0;
// Whether this tab is a placeholder tab. On some platforms, tabs can be
// restored without bringing all their state into memory, and are just
@@ -67,6 +66,6 @@ class SyncedTabDelegate {
SyncedTabDelegate();
};
-} // namespace browser_sync
+} // namespace sync_sessions
#endif // COMPONENTS_SYNC_SESSIONS_SYNCED_TAB_DELEGATE_H__
« no previous file with comments | « components/sync_sessions/synced_session_tracker_unittest.cc ('k') | components/sync_sessions/synced_tab_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698