| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 <stddef.h> |
| 6 |
| 5 #include "base/bind.h" | 7 #include "base/bind.h" |
| 6 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 #include "base/macros.h" |
| 7 #include "base/strings/string_split.h" | 10 #include "base/strings/string_split.h" |
| 8 #include "base/strings/string_util.h" | 11 #include "base/strings/string_util.h" |
| 9 #include "base/threading/thread_restrictions.h" | 12 #include "base/threading/thread_restrictions.h" |
| 10 #include "chrome/browser/chromeos/base/locale_util.h" | 13 #include "chrome/browser/chromeos/base/locale_util.h" |
| 11 #include "chrome/browser/chromeos/customization/customization_document.h" | 14 #include "chrome/browser/chromeos/customization/customization_document.h" |
| 12 #include "chrome/browser/profiles/profile_manager.h" | 15 #include "chrome/browser/profiles/profile_manager.h" |
| 13 #include "chrome/browser/ui/webui/chromeos/login/l10n_util.h" | 16 #include "chrome/browser/ui/webui/chromeos/login/l10n_util.h" |
| 14 #include "chrome/test/base/in_process_browser_test.h" | 17 #include "chrome/test/base/in_process_browser_test.h" |
| 15 #include "chromeos/system/fake_statistics_provider.h" | 18 #include "chromeos/system/fake_statistics_provider.h" |
| 16 #include "chromeos/system/statistics_provider.h" | 19 #include "chromeos/system/statistics_provider.h" |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 break; | 251 break; |
| 249 } | 252 } |
| 250 } | 253 } |
| 251 } | 254 } |
| 252 | 255 |
| 253 INSTANTIATE_TEST_CASE_P(StringSequence, | 256 INSTANTIATE_TEST_CASE_P(StringSequence, |
| 254 CustomizationVPDTest, | 257 CustomizationVPDTest, |
| 255 testing::ValuesIn(kVPDInitialLocales)); | 258 testing::ValuesIn(kVPDInitialLocales)); |
| 256 | 259 |
| 257 } // namespace chromeos | 260 } // namespace chromeos |
| OLD | NEW |