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

Side by Side Diff: chrome/browser/sync/glue/generic_change_processor_unittest.cc

Issue 133503011: Move files from //chrome/browser/sync to sync_driver component. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 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 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/glue/generic_change_processor.h" 5 #include "chrome/browser/sync/glue/generic_change_processor.h"
6 6
7 #include "base/memory/scoped_ptr.h" 7 #include "base/memory/scoped_ptr.h"
8 #include "base/memory/weak_ptr.h" 8 #include "base/memory/weak_ptr.h"
9 #include "base/message_loop/message_loop.h" 9 #include "base/message_loop/message_loop.h"
10 #include "base/strings/stringprintf.h" 10 #include "base/strings/stringprintf.h"
11 #include "chrome/browser/sync/glue/data_type_error_handler_mock.h" 11 #include "components/sync_driver/data_type_error_handler_mock.h"
12 #include "sync/api/fake_syncable_service.h" 12 #include "sync/api/fake_syncable_service.h"
13 #include "sync/api/sync_change.h" 13 #include "sync/api/sync_change.h"
14 #include "sync/api/sync_merge_result.h" 14 #include "sync/api/sync_merge_result.h"
15 #include "sync/internal_api/public/base/model_type.h" 15 #include "sync/internal_api/public/base/model_type.h"
16 #include "sync/internal_api/public/read_node.h" 16 #include "sync/internal_api/public/read_node.h"
17 #include "sync/internal_api/public/read_transaction.h" 17 #include "sync/internal_api/public/read_transaction.h"
18 #include "sync/internal_api/public/test/test_user_share.h" 18 #include "sync/internal_api/public/test/test_user_share.h"
19 #include "sync/internal_api/public/user_share.h" 19 #include "sync/internal_api/public/user_share.h"
20 #include "sync/internal_api/public/write_node.h" 20 #include "sync/internal_api/public/write_node.h"
21 #include "sync/internal_api/public/write_transaction.h" 21 #include "sync/internal_api/public/write_transaction.h"
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 ASSERT_TRUE(raw_specifics.has_password()); 234 ASSERT_TRUE(raw_specifics.has_password());
235 ASSERT_TRUE(raw_specifics.password().has_encrypted()); 235 ASSERT_TRUE(raw_specifics.password().has_encrypted());
236 ASSERT_FALSE(raw_specifics.password().has_client_only_encrypted_data()); 236 ASSERT_FALSE(raw_specifics.password().has_client_only_encrypted_data());
237 } 237 }
238 } 238 }
239 239
240 } // namespace 240 } // namespace
241 241
242 } // namespace browser_sync 242 } // namespace browser_sync
243 243
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698