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 "chrome/test/base/chrome_test_suite.h" | 5 #include "chrome/test/base/chrome_test_suite.h" |
6 | 6 |
7 #if defined(OS_CHROMEOS) | 7 #if defined(OS_CHROMEOS) |
8 #include <stdio.h> | 8 #include <stdio.h> |
9 #include <unistd.h> | 9 #include <unistd.h> |
10 #endif | 10 #endif |
(...skipping 18 matching lines...) Expand all Loading... |
29 #include "content/public/test/test_launcher.h" | 29 #include "content/public/test/test_launcher.h" |
30 #include "extensions/common/extension_paths.h" | 30 #include "extensions/common/extension_paths.h" |
31 #include "testing/gtest/include/gtest/gtest.h" | 31 #include "testing/gtest/include/gtest/gtest.h" |
32 #include "ui/base/resource/resource_bundle.h" | 32 #include "ui/base/resource/resource_bundle.h" |
33 #include "ui/base/resource/resource_handle.h" | 33 #include "ui/base/resource/resource_handle.h" |
34 | 34 |
35 #if defined(OS_ANDROID) | 35 #if defined(OS_ANDROID) |
36 #include "base/android/jni_android.h" | 36 #include "base/android/jni_android.h" |
37 #include "chrome/browser/android/chrome_jni_registrar.h" | 37 #include "chrome/browser/android/chrome_jni_registrar.h" |
38 #include "net/android/net_jni_registrar.h" | 38 #include "net/android/net_jni_registrar.h" |
39 #include "ui/base/android/ui_jni_registrar.h" | 39 #include "ui/base/android/ui_base_jni_registrar.h" |
40 #include "ui/gfx/android/gfx_jni_registrar.h" | 40 #include "ui/gfx/android/gfx_jni_registrar.h" |
41 #include "ui/gl/android/gl_jni_registrar.h" | 41 #include "ui/gl/android/gl_jni_registrar.h" |
42 #endif | 42 #endif |
43 | 43 |
44 #if defined(OS_CHROMEOS) | 44 #if defined(OS_CHROMEOS) |
45 #include "base/process/process_metrics.h" | 45 #include "base/process/process_metrics.h" |
46 #include "chromeos/chromeos_paths.h" | 46 #include "chromeos/chromeos_paths.h" |
47 #endif | 47 #endif |
48 | 48 |
49 #if defined(OS_MACOSX) | 49 #if defined(OS_MACOSX) |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 #if defined(OS_MACOSX) && !defined(OS_IOS) | 262 #if defined(OS_MACOSX) && !defined(OS_IOS) |
263 base::mac::SetOverrideFrameworkBundle(NULL); | 263 base::mac::SetOverrideFrameworkBundle(NULL); |
264 #endif | 264 #endif |
265 | 265 |
266 base::StatsTable::set_current(NULL); | 266 base::StatsTable::set_current(NULL); |
267 stats_table_.reset(); | 267 stats_table_.reset(); |
268 RemoveSharedMemoryFile(stats_filename_); | 268 RemoveSharedMemoryFile(stats_filename_); |
269 | 269 |
270 base::TestSuite::Shutdown(); | 270 base::TestSuite::Shutdown(); |
271 } | 271 } |
OLD | NEW |