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

Side by Side Diff: chrome/browser/sync_file_system/remote_file_sync_service.cc

Issue 11187021: Add RemoteFileSyncService interface (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: '' Created 8 years, 1 month 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/sync_file_system/remote_file_sync_service.h"
6
7 namespace sync_file_system {
8
9 RemoteFileSyncService::RemoteFileSyncService() {
10 }
11
12 RemoteFileSyncService::~RemoteFileSyncService() {
13 }
14
15 void RemoteFileSyncService::AddObserver(RemoteChangeObserver* observer) {
16 observers_.AddObserver(observer);
17 }
18
19 void RemoteFileSyncService::RemoveObserver(RemoteChangeObserver* observer) {
20 observers_.RemoveObserver(observer);
21 }
22
23 void RemoteFileSyncService::NotifyRemoteChangeAvailable(int64 pending_changes) {
24 // TODO(tzik): Implement.
25 }
26
27
28 } // namespace sync_file_system
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698