- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / browser / sync_file_system / drive_backend / local_to_remote_syncer.cc
1 // Copyright 2013 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/drive_backend/local_to_remote_syncer.h"
6
7 #include "base/callback.h"
8 #include "base/logging.h"
9
10 namespace sync_file_system {
11 namespace drive_backend {
12
13 LocalToRemoteSyncer::LocalToRemoteSyncer() {
14   NOTIMPLEMENTED();
15 }
16
17 LocalToRemoteSyncer::~LocalToRemoteSyncer() {
18   NOTIMPLEMENTED();
19 }
20
21 void LocalToRemoteSyncer::Run(const SyncStatusCallback& callback) {
22   NOTIMPLEMENTED();
23   callback.Run(SYNC_STATUS_FAILED);
24 }
25
26 }  // namespace drive_backend
27 }  // namespace sync_file_system