| 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 "ui/test/test_suite.h" | 5 #include "ui/test/test_suite.h" |
| 6 | 6 |
| 7 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
| 8 #include "base/path_service.h" | 8 #include "base/path_service.h" |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 #include "ui/base/resource/resource_bundle.h" | 10 #include "ui/base/resource/resource_bundle.h" |
| 11 #include "ui/base/resource/resource_handle.h" | 11 #include "ui/base/resource/resource_handle.h" |
| 12 #include "ui/base/ui_base_paths.h" | 12 #include "ui/base/ui_base_paths.h" |
| 13 #include "ui/gfx/gfx_paths.h" | 13 #include "ui/gfx/gfx_paths.h" |
| 14 | 14 |
| 15 #if defined(OS_ANDROID) | 15 #if defined(OS_ANDROID) |
| 16 #include "base/android/jni_android.h" | 16 #include "base/android/jni_android.h" |
| 17 #include "ui/android/ui_jni_registrar.h" | 17 #include "ui/base/android/ui_jni_registrar.h" |
| 18 #include "ui/gfx/android/gfx_jni_registrar.h" | 18 #include "ui/gfx/android/gfx_jni_registrar.h" |
| 19 #endif | 19 #endif |
| 20 | 20 |
| 21 #if defined(OS_MACOSX) && !defined(OS_IOS) | 21 #if defined(OS_MACOSX) && !defined(OS_IOS) |
| 22 #include "base/mac/bundle_locations.h" | 22 #include "base/mac/bundle_locations.h" |
| 23 #endif | 23 #endif |
| 24 | 24 |
| 25 namespace ui { | 25 namespace ui { |
| 26 namespace test { | 26 namespace test { |
| 27 | 27 |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 ui::ResourceBundle::CleanupSharedInstance(); | 80 ui::ResourceBundle::CleanupSharedInstance(); |
| 81 | 81 |
| 82 #if defined(OS_MACOSX) && !defined(OS_IOS) | 82 #if defined(OS_MACOSX) && !defined(OS_IOS) |
| 83 base::mac::SetOverrideFrameworkBundle(NULL); | 83 base::mac::SetOverrideFrameworkBundle(NULL); |
| 84 #endif | 84 #endif |
| 85 base::TestSuite::Shutdown(); | 85 base::TestSuite::Shutdown(); |
| 86 } | 86 } |
| 87 | 87 |
| 88 } // namespace test | 88 } // namespace test |
| 89 } // namespace ui | 89 } // namespace ui |
| OLD | NEW |