| 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__
|
|
|