OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "base/basictypes.h" | |
6 #include "base/bind.h" | 5 #include "base/bind.h" |
7 #include "base/compiler_specific.h" | 6 #include "base/compiler_specific.h" |
| 7 #include "base/macros.h" |
8 #include "base/path_service.h" | 8 #include "base/path_service.h" |
9 #include "base/test/launcher/unit_test_launcher.h" | 9 #include "base/test/launcher/unit_test_launcher.h" |
10 #include "base/test/test_suite.h" | 10 #include "base/test/test_suite.h" |
11 #include "testing/gtest/include/gtest/gtest.h" | 11 #include "testing/gtest/include/gtest/gtest.h" |
12 #include "ui/base/resource/resource_bundle.h" | 12 #include "ui/base/resource/resource_bundle.h" |
13 #include "ui/base/ui_base_paths.h" | 13 #include "ui/base/ui_base_paths.h" |
14 #include "ui/gl/test/gl_surface_test_support.h" | 14 #include "ui/gl/test/gl_surface_test_support.h" |
15 | 15 |
16 namespace { | 16 namespace { |
17 | 17 |
(...skipping 24 matching lines...) Expand all Loading... |
42 } // namespace | 42 } // namespace |
43 | 43 |
44 int main(int argc, char** argv) { | 44 int main(int argc, char** argv) { |
45 KeyboardTestSuite test_suite(argc, argv); | 45 KeyboardTestSuite test_suite(argc, argv); |
46 | 46 |
47 return base::LaunchUnitTests( | 47 return base::LaunchUnitTests( |
48 argc, | 48 argc, |
49 argv, | 49 argv, |
50 base::Bind(&KeyboardTestSuite::Run, base::Unretained(&test_suite))); | 50 base::Bind(&KeyboardTestSuite::Run, base::Unretained(&test_suite))); |
51 } | 51 } |
OLD | NEW |