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

Unified Diff: components/sync_sessions/fake_sync_sessions_client.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
« no previous file with comments | « components/sync_sessions/BUILD.gn ('k') | components/sync_sessions/fake_sync_sessions_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync_sessions/fake_sync_sessions_client.h
diff --git a/components/sync_sessions/fake_sync_sessions_client.h b/components/sync_sessions/fake_sync_sessions_client.h
index 3bd4cc7a2cc6b004d52ebdde1dc696a04d07f9ab..7b17f3a1d8896ea4019743d4ddbe001420931d2d 100644
--- a/components/sync_sessions/fake_sync_sessions_client.h
+++ b/components/sync_sessions/fake_sync_sessions_client.h
@@ -5,6 +5,8 @@
#ifndef COMPONENTS_SYNC_SESSIONS_FAKE_SYNC_SESSIONS_CLIENT_H_
#define COMPONENTS_SYNC_SESSIONS_FAKE_SYNC_SESSIONS_CLIENT_H_
+#include <memory>
+
#include "base/macros.h"
#include "components/sync_sessions/sync_sessions_client.h"
@@ -21,10 +23,9 @@ class FakeSyncSessionsClient : public SyncSessionsClient {
favicon::FaviconService* GetFaviconService() override;
history::HistoryService* GetHistoryService() override;
bool ShouldSyncURL(const GURL& url) const override;
- browser_sync::SyncedWindowDelegatesGetter* GetSyncedWindowDelegatesGetter()
+ SyncedWindowDelegatesGetter* GetSyncedWindowDelegatesGetter() override;
+ std::unique_ptr<LocalSessionEventRouter> GetLocalSessionEventRouter()
override;
- std::unique_ptr<browser_sync::LocalSessionEventRouter>
- GetLocalSessionEventRouter() override;
private:
DISALLOW_COPY_AND_ASSIGN(FakeSyncSessionsClient);
« no previous file with comments | « components/sync_sessions/BUILD.gn ('k') | components/sync_sessions/fake_sync_sessions_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698