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

Unified Diff: ios/chrome/browser/sync/ios_chrome_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: ios/chrome/browser/sync/ios_chrome_synced_tab_delegate.h
diff --git a/ios/chrome/browser/sync/ios_chrome_synced_tab_delegate.h b/ios/chrome/browser/sync/ios_chrome_synced_tab_delegate.h
index 06bfc745a60200f4e4cc35fee767dc008e74a621..4df71c10dbd5320c18b6429bf4d2d5b1a69fab47 100644
--- a/ios/chrome/browser/sync/ios_chrome_synced_tab_delegate.h
+++ b/ios/chrome/browser/sync/ios_chrome_synced_tab_delegate.h
@@ -2,8 +2,11 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CHROME_BROWSER_UI_SYNC_TAB_CONTENTS_SYNCED_TAB_DELEGATE_H_
-#define CHROME_BROWSER_UI_SYNC_TAB_CONTENTS_SYNCED_TAB_DELEGATE_H_
+#ifndef IOS_CHROME_BROWSER_SYNC_IOS_CHROME_SYNCED_TAB_DELEGATE_H_
+#define IOS_CHROME_BROWSER_SYNC_IOS_CHROME_SYNCED_TAB_DELEGATE_H_
+
+#include <string>
+#include <vector>
#include "base/compiler_specific.h"
#include "base/macros.h"
@@ -12,7 +15,7 @@
#include "ios/web/public/web_state/web_state_user_data.h"
class IOSChromeSyncedTabDelegate
- : public browser_sync::SyncedTabDelegate,
+ : public sync_sessions::SyncedTabDelegate,
public web::WebStateUserData<IOSChromeSyncedTabDelegate> {
public:
~IOSChromeSyncedTabDelegate() override;
@@ -49,4 +52,4 @@ class IOSChromeSyncedTabDelegate
DISALLOW_COPY_AND_ASSIGN(IOSChromeSyncedTabDelegate);
};
-#endif // CHROME_BROWSER_UI_SYNC_TAB_CONTENTS_SYNCED_TAB_DELEGATE_H_
+#endif // IOS_CHROME_BROWSER_SYNC_IOS_CHROME_SYNCED_TAB_DELEGATE_H_

Powered by Google App Engine
This is Rietveld 408576698