| OLD | NEW |
| 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 "base/compiler_specific.h" | 5 #include "base/compiler_specific.h" |
| 6 #include "base/memory/scoped_vector.h" | 6 #include "base/memory/scoped_vector.h" |
| 7 #include "base/prefs/scoped_user_pref_update.h" | 7 #include "base/prefs/scoped_user_pref_update.h" |
| 8 #include "chrome/browser/profiles/profile.h" | 8 #include "chrome/browser/profiles/profile.h" |
| 9 #include "chrome/browser/sync/backend_migrator.h" | 9 #include "chrome/browser/sync/backend_migrator.h" |
| 10 #include "chrome/browser/sync/test/integration/bookmarks_helper.h" | 10 #include "chrome/browser/sync/test/integration/bookmarks_helper.h" |
| 11 #include "chrome/browser/sync/test/integration/preferences_helper.h" | 11 #include "chrome/browser/sync/test/integration/preferences_helper.h" |
| 12 #include "chrome/browser/sync/test/integration/profile_sync_service_harness.h" | 12 #include "chrome/browser/sync/test/integration/profile_sync_service_harness.h" |
| 13 #include "chrome/browser/sync/test/integration/status_change_checker.h" | 13 #include "chrome/browser/sync/test/integration/status_change_checker.h" |
| 14 #include "chrome/browser/sync/test/integration/sync_test.h" | 14 #include "chrome/browser/sync/test/integration/sync_test.h" |
| 15 #include "chrome/browser/translate/translate_prefs.h" | |
| 16 #include "chrome/common/pref_names.h" | 15 #include "chrome/common/pref_names.h" |
| 17 #include "chrome/test/base/ui_test_utils.h" | 16 #include "chrome/test/base/ui_test_utils.h" |
| 17 #include "components/translate/core/browser/translate_prefs.h" |
| 18 | 18 |
| 19 using bookmarks_helper::AddURL; | 19 using bookmarks_helper::AddURL; |
| 20 using bookmarks_helper::IndexedURL; | 20 using bookmarks_helper::IndexedURL; |
| 21 using bookmarks_helper::IndexedURLTitle; | 21 using bookmarks_helper::IndexedURLTitle; |
| 22 | 22 |
| 23 using preferences_helper::BooleanPrefMatches; | 23 using preferences_helper::BooleanPrefMatches; |
| 24 using preferences_helper::ChangeBooleanPref; | 24 using preferences_helper::ChangeBooleanPref; |
| 25 | 25 |
| 26 namespace { | 26 namespace { |
| 27 | 27 |
| (...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 516 // Do not add optional datatypes. | 516 // Do not add optional datatypes. |
| 517 } | 517 } |
| 518 | 518 |
| 519 virtual ~MigrationReconfigureTest() {} | 519 virtual ~MigrationReconfigureTest() {} |
| 520 | 520 |
| 521 private: | 521 private: |
| 522 DISALLOW_COPY_AND_ASSIGN(MigrationReconfigureTest); | 522 DISALLOW_COPY_AND_ASSIGN(MigrationReconfigureTest); |
| 523 }; | 523 }; |
| 524 | 524 |
| 525 } // namespace | 525 } // namespace |
| OLD | NEW |