| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 <vector> | 5 #include <vector> |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/file_path.h" | 8 #include "base/file_path.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/message_loop.h" | 10 #include "base/message_loop.h" |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 std::vector<syncable::ModelType> datatypes; | 37 std::vector<syncable::ModelType> datatypes; |
| 38 datatypes.push_back(syncable::BOOKMARKS); | 38 datatypes.push_back(syncable::BOOKMARKS); |
| 39 datatypes.push_back(syncable::PREFERENCES); | 39 datatypes.push_back(syncable::PREFERENCES); |
| 40 datatypes.push_back(syncable::AUTOFILL); | 40 datatypes.push_back(syncable::AUTOFILL); |
| 41 datatypes.push_back(syncable::THEMES); | 41 datatypes.push_back(syncable::THEMES); |
| 42 datatypes.push_back(syncable::EXTENSIONS); | 42 datatypes.push_back(syncable::EXTENSIONS); |
| 43 datatypes.push_back(syncable::APPS); | 43 datatypes.push_back(syncable::APPS); |
| 44 datatypes.push_back(syncable::AUTOFILL_PROFILE); | 44 datatypes.push_back(syncable::AUTOFILL_PROFILE); |
| 45 datatypes.push_back(syncable::PASSWORDS); | 45 datatypes.push_back(syncable::PASSWORDS); |
| 46 datatypes.push_back(syncable::TYPED_URLS); | 46 datatypes.push_back(syncable::TYPED_URLS); |
| 47 datatypes.push_back(syncable::SEARCH_ENGINES); |
| 47 return datatypes; | 48 return datatypes; |
| 48 } | 49 } |
| 49 | 50 |
| 50 // Returns the number of default datatypes. | 51 // Returns the number of default datatypes. |
| 51 static size_t DefaultDatatypesCount() { | 52 static size_t DefaultDatatypesCount() { |
| 52 return DefaultDatatypes().size(); | 53 return DefaultDatatypes().size(); |
| 53 } | 54 } |
| 54 | 55 |
| 55 // Asserts that all the default datatypes are in |map|, except | 56 // Asserts that all the default datatypes are in |map|, except |
| 56 // for |exception_type|, which unless it is UNDEFINED, is asserted to | 57 // for |exception_type|, which unless it is UNDEFINED, is asserted to |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 | 134 |
| 134 TEST_F(ProfileSyncFactoryImplTest, CreatePSSDisableAutofillProfile) { | 135 TEST_F(ProfileSyncFactoryImplTest, CreatePSSDisableAutofillProfile) { |
| 135 TestSwitchDisablesType(switches::kDisableSyncAutofillProfile, | 136 TestSwitchDisablesType(switches::kDisableSyncAutofillProfile, |
| 136 syncable::AUTOFILL_PROFILE); | 137 syncable::AUTOFILL_PROFILE); |
| 137 } | 138 } |
| 138 | 139 |
| 139 TEST_F(ProfileSyncFactoryImplTest, CreatePSSDisablePasswords) { | 140 TEST_F(ProfileSyncFactoryImplTest, CreatePSSDisablePasswords) { |
| 140 TestSwitchDisablesType(switches::kDisableSyncPasswords, | 141 TestSwitchDisablesType(switches::kDisableSyncPasswords, |
| 141 syncable::PASSWORDS); | 142 syncable::PASSWORDS); |
| 142 } | 143 } |
| OLD | NEW |