| 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/android/ui_jni_registrar.h" | 39 #include "ui/base/android/ui_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 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 #if defined(OS_MACOSX) && !defined(OS_IOS) | 238 #if defined(OS_MACOSX) && !defined(OS_IOS) |
| 239 base::mac::SetOverrideFrameworkBundle(NULL); | 239 base::mac::SetOverrideFrameworkBundle(NULL); |
| 240 #endif | 240 #endif |
| 241 | 241 |
| 242 base::StatsTable::set_current(NULL); | 242 base::StatsTable::set_current(NULL); |
| 243 stats_table_.reset(); | 243 stats_table_.reset(); |
| 244 RemoveSharedMemoryFile(stats_filename_); | 244 RemoveSharedMemoryFile(stats_filename_); |
| 245 | 245 |
| 246 base::TestSuite::Shutdown(); | 246 base::TestSuite::Shutdown(); |
| 247 } | 247 } |
| OLD | NEW |