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

Side by Side Diff: chrome/browser/sync/abstract_profile_sync_service_test.cc

Issue 9699057: [Sync] Move 'sync' target to sync/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address Tim's comments Created 8 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/sync/abstract_profile_sync_service_test.h ('k') | chrome/browser/sync/api/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 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 "chrome/browser/sync/abstract_profile_sync_service_test.h" 5 #include "chrome/browser/sync/abstract_profile_sync_service_test.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/bind_helpers.h" 8 #include "base/bind_helpers.h"
9 #include "base/location.h" 9 #include "base/location.h"
10 #include "chrome/browser/sync/internal_api/write_transaction.h" 10 #include "chrome/browser/sync/internal_api/write_transaction.h"
11 #include "chrome/browser/sync/syncable/syncable.h"
12 #include "chrome/browser/sync/test/engine/test_id_factory.h"
13 #include "chrome/browser/sync/test_profile_sync_service.h" 11 #include "chrome/browser/sync/test_profile_sync_service.h"
14 #include "chrome/browser/sync/util/cryptographer.h"
15 #include "sync/protocol/sync.pb.h" 12 #include "sync/protocol/sync.pb.h"
13 #include "sync/syncable/syncable.h"
14 #include "sync/test/engine/test_id_factory.h"
15 #include "sync/util/cryptographer.h"
16 16
17 using browser_sync::TestIdFactory; 17 using browser_sync::TestIdFactory;
18 using content::BrowserThread; 18 using content::BrowserThread;
19 using sync_api::UserShare; 19 using sync_api::UserShare;
20 using syncable::BASE_VERSION; 20 using syncable::BASE_VERSION;
21 using syncable::CREATE; 21 using syncable::CREATE;
22 using syncable::IS_DEL; 22 using syncable::IS_DEL;
23 using syncable::IS_DIR; 23 using syncable::IS_DIR;
24 using syncable::IS_UNAPPLIED_UPDATE; 24 using syncable::IS_UNAPPLIED_UPDATE;
25 using syncable::IS_UNSYNCED; 25 using syncable::IS_UNSYNCED;
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 return callback_; 145 return callback_;
146 } 146 }
147 147
148 bool CreateRootHelper::success() { 148 bool CreateRootHelper::success() {
149 return success_; 149 return success_;
150 } 150 }
151 151
152 void CreateRootHelper::CreateRootCallback() { 152 void CreateRootHelper::CreateRootCallback() {
153 success_ = test_->CreateRoot(model_type_); 153 success_ = test_->CreateRoot(model_type_);
154 } 154 }
OLDNEW
« no previous file with comments | « chrome/browser/sync/abstract_profile_sync_service_test.h ('k') | chrome/browser/sync/api/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698