OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 #include "base/platform_thread.h" |
| 5 #include "base/perf_test_suite.h" |
| 6 #include "base/scoped_ptr.h" |
| 7 #include "chrome/common/chrome_paths.h" |
| 8 #include "chrome_frame/test_utils.h" |
| 9 |
| 10 int main(int argc, char **argv) { |
| 11 PerfTestSuite perf_suite(argc, argv); |
| 12 chrome::RegisterPathProvider(); |
| 13 PlatformThread::SetName("ChromeFrame perf tests"); |
| 14 // Use ctor/raii to register the local Chrome Frame dll. |
| 15 scoped_ptr<ScopedChromeFrameRegistrar> registrar(new ScopedChromeFrameRegistra
r); |
| 16 return perf_suite.Run(); |
| 17 } |
OLD | NEW |