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

Unified Diff: chrome/browser/sync/glue/synced_window_delegates_getter_android.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: chrome/browser/sync/glue/synced_window_delegates_getter_android.h
diff --git a/chrome/browser/sync/glue/synced_window_delegates_getter_android.h b/chrome/browser/sync/glue/synced_window_delegates_getter_android.h
index 67aec951a5ebd1061a9d862eeedbf52e5f11a08e..73f0dcb1dcaddef2dd4e8ae68754a342ec6d996e 100644
--- a/chrome/browser/sync/glue/synced_window_delegates_getter_android.h
+++ b/chrome/browser/sync/glue/synced_window_delegates_getter_android.h
@@ -10,19 +10,24 @@
#include "base/macros.h"
#include "components/sync_sessions/synced_window_delegates_getter.h"
-namespace browser_sync {
-
+namespace sync_sessions {
class SyncedWindowDelegate;
+}
+
+namespace browser_sync {
// This class defines how to access SyncedWindowDelegates on Android.
-class SyncedWindowDelegatesGetterAndroid : public SyncedWindowDelegatesGetter {
+class SyncedWindowDelegatesGetterAndroid
+ : public sync_sessions::SyncedWindowDelegatesGetter {
public:
SyncedWindowDelegatesGetterAndroid();
~SyncedWindowDelegatesGetterAndroid() override;
// SyncedWindowDelegatesGetter implementation
- std::set<const SyncedWindowDelegate*> GetSyncedWindowDelegates() override;
- const SyncedWindowDelegate* FindById(SessionID::id_type id) override;
+ std::set<const sync_sessions::SyncedWindowDelegate*>
+ GetSyncedWindowDelegates() override;
+ const sync_sessions::SyncedWindowDelegate* FindById(
+ SessionID::id_type id) override;
private:
DISALLOW_COPY_AND_ASSIGN(SyncedWindowDelegatesGetterAndroid);

Powered by Google App Engine
This is Rietveld 408576698