Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Side by Side Diff: ui/keyboard/test/run_all_unittests.cc

Issue 1998723002: Move code in ui/gl/* from gfx:: to gl:: (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ui/gl/yuv_to_rgb_converter.cc ('k') | ui/message_center/test/run_all_unittests.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/bind.h" 5 #include "base/bind.h"
6 #include "base/compiler_specific.h" 6 #include "base/compiler_specific.h"
7 #include "base/macros.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
18 class KeyboardTestSuite : public base::TestSuite { 18 class KeyboardTestSuite : public base::TestSuite {
19 public: 19 public:
20 KeyboardTestSuite(int argc, char** argv) : base::TestSuite(argc, argv) {} 20 KeyboardTestSuite(int argc, char** argv) : base::TestSuite(argc, argv) {}
21 21
22 protected: 22 protected:
23 void Initialize() override { 23 void Initialize() override {
24 base::TestSuite::Initialize(); 24 base::TestSuite::Initialize();
25 gfx::GLSurfaceTestSupport::InitializeOneOff(); 25 gl::GLSurfaceTestSupport::InitializeOneOff();
26 ui::RegisterPathProvider(); 26 ui::RegisterPathProvider();
27 27
28 base::FilePath ui_test_pak_path; 28 base::FilePath ui_test_pak_path;
29 ASSERT_TRUE(PathService::Get(ui::UI_TEST_PAK, &ui_test_pak_path)); 29 ASSERT_TRUE(PathService::Get(ui::UI_TEST_PAK, &ui_test_pak_path));
30 ui::ResourceBundle::InitSharedInstanceWithPakPath(ui_test_pak_path); 30 ui::ResourceBundle::InitSharedInstanceWithPakPath(ui_test_pak_path);
31 } 31 }
32 32
33 void Shutdown() override { 33 void Shutdown() override {
34 ui::ResourceBundle::CleanupSharedInstance(); 34 ui::ResourceBundle::CleanupSharedInstance();
35 base::TestSuite::Shutdown(); 35 base::TestSuite::Shutdown();
36 } 36 }
37 37
38 private: 38 private:
39 DISALLOW_COPY_AND_ASSIGN(KeyboardTestSuite); 39 DISALLOW_COPY_AND_ASSIGN(KeyboardTestSuite);
40 }; 40 };
41 41
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 }
OLDNEW
« no previous file with comments | « ui/gl/yuv_to_rgb_converter.cc ('k') | ui/message_center/test/run_all_unittests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698