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

Side by Side Diff: ui/touch_selection/run_all_unittests.cc

Issue 698253004: Reland: Implement Aura side of unified touch text selection for contents (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased after addition of touch_handle_orientation file Created 5 years, 9 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
OLDNEW
(Empty)
1 // Copyright 2015 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
5 #include "base/bind.h"
6 #include "base/path_service.h"
7 #include "base/test/launcher/unit_test_launcher.h"
8 #include "base/test/test_suite.h"
9 #include "testing/gtest/include/gtest/gtest.h"
10 #include "ui/base/resource/resource_bundle.h"
11 #include "ui/base/ui_base_paths.h"
12 #include "ui/gl/gl_surface.h"
13
14 namespace {
15
16 class UITouchSelectionTestSuite : public base::TestSuite {
17 public:
18 UITouchSelectionTestSuite(int argc, char** argv)
19 : base::TestSuite(argc, argv) {}
20 ~UITouchSelectionTestSuite() override {}
21
22 protected:
23 void Initialize() override {
24 base::TestSuite::Initialize();
25 gfx::GLSurface::InitializeOneOffForTests();
26 ui::RegisterPathProvider();
27
28 base::FilePath 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);
31 }
32
33 void Shutdown() override {
34 ui::ResourceBundle::CleanupSharedInstance();
35 base::TestSuite::Shutdown();
36 }
37
38 private:
39 DISALLOW_COPY_AND_ASSIGN(UITouchSelectionTestSuite);
40 };
41
42 } // namespace
43
44 int main(int argc, char** argv) {
45 UITouchSelectionTestSuite test_suite(argc, argv);
46
47 return base::LaunchUnitTests(
48 argc,
49 argv,
50 base::Bind(&UITouchSelectionTestSuite::Run,
51 base::Unretained(&test_suite)));
52 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698