diff options
Diffstat (limited to 'chrome_frame/test/perf/run_all.cc')
-rw-r--r-- | chrome_frame/test/perf/run_all.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome_frame/test/perf/run_all.cc b/chrome_frame/test/perf/run_all.cc index 26c6e99..01dda7c 100644 --- a/chrome_frame/test/perf/run_all.cc +++ b/chrome_frame/test/perf/run_all.cc @@ -2,9 +2,9 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "base/platform_thread.h" #include "base/test/perf_test_suite.h" #include "base/scoped_ptr.h" +#include "base/threading/platform_thread.h" #include "chrome/common/chrome_paths.h" #include "chrome_frame/test/chrome_frame_test_utils.h" #include "chrome_frame/test_utils.h" @@ -13,7 +13,7 @@ int main(int argc, char **argv) { base::PerfTestSuite perf_suite(argc, argv); chrome::RegisterPathProvider(); - PlatformThread::SetName("ChromeFrame perf tests"); + base::PlatformThread::SetName("ChromeFrame perf tests"); SetConfigBool(kChromeFrameHeadlessMode, true); SetConfigBool(kChromeFrameUnpinnedMode, true); |