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

Side by Side Diff: components/sync_sessions/fake_sync_sessions_client.cc

Issue 2753753005: [sync] WebContentsObserver based sessions notifications (Closed)
Patch Set: use base:MakeUnique, alphabetize Created 3 years, 9 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/sync_sessions/fake_sync_sessions_client.h" 5 #include "components/sync_sessions/fake_sync_sessions_client.h"
6 #include "components/sync_sessions/local_session_event_router.h" 6 #include "components/sync_sessions/local_session_event_router.h"
7 7
8 #include "url/gurl.h" 8 #include "url/gurl.h"
9 9
10 namespace sync_sessions { 10 namespace sync_sessions {
(...skipping 15 matching lines...) Expand all
26 26
27 bool FakeSyncSessionsClient::ShouldSyncURL(const GURL& url) const { 27 bool FakeSyncSessionsClient::ShouldSyncURL(const GURL& url) const {
28 return url.is_valid(); 28 return url.is_valid();
29 } 29 }
30 30
31 SyncedWindowDelegatesGetter* 31 SyncedWindowDelegatesGetter*
32 FakeSyncSessionsClient::GetSyncedWindowDelegatesGetter() { 32 FakeSyncSessionsClient::GetSyncedWindowDelegatesGetter() {
33 return nullptr; 33 return nullptr;
34 } 34 }
35 35
36 std::unique_ptr<LocalSessionEventRouter> 36 LocalSessionEventRouter* FakeSyncSessionsClient::GetLocalSessionEventRouter() {
37 FakeSyncSessionsClient::GetLocalSessionEventRouter() {
38 return nullptr; 37 return nullptr;
39 } 38 }
40 39
41 } // namespace sync_sessions 40 } // namespace sync_sessions
OLDNEW
« no previous file with comments | « components/sync_sessions/fake_sync_sessions_client.h ('k') | components/sync_sessions/sessions_sync_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698