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

Side by Side Diff: ui/views/mus/views_mus_test_suite.cc

Issue 1978293003: Rename ViewTestSuite to ViewsTestSuite and put it in the proper file (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@widgetinteractive
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/views/mus/views_mus_test_suite.h ('k') | ui/views/run_all_unittests.h » ('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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 "ui/views/mus/views_mus_test_suite.h" 5 #include "ui/views/mus/views_mus_test_suite.h"
6 6
7 #include <memory> 7 #include <memory>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 std::unique_ptr<shell::BackgroundShell> background_shell_; 117 std::unique_ptr<shell::BackgroundShell> background_shell_;
118 std::unique_ptr<shell::ShellConnection> shell_connection_; 118 std::unique_ptr<shell::ShellConnection> shell_connection_;
119 std::unique_ptr<DefaultShellClient> shell_client_; 119 std::unique_ptr<DefaultShellClient> shell_client_;
120 std::unique_ptr<shell::Connector> shell_connector_; 120 std::unique_ptr<shell::Connector> shell_connector_;
121 shell::Identity shell_identity_; 121 shell::Identity shell_identity_;
122 122
123 DISALLOW_COPY_AND_ASSIGN(ShellConnection); 123 DISALLOW_COPY_AND_ASSIGN(ShellConnection);
124 }; 124 };
125 125
126 ViewsMusTestSuite::ViewsMusTestSuite(int argc, char** argv) 126 ViewsMusTestSuite::ViewsMusTestSuite(int argc, char** argv)
127 : ViewTestSuite(argc, argv) {} 127 : ViewsTestSuite(argc, argv) {}
128 128
129 ViewsMusTestSuite::~ViewsMusTestSuite() {} 129 ViewsMusTestSuite::~ViewsMusTestSuite() {}
130 130
131 void ViewsMusTestSuite::Initialize() { 131 void ViewsMusTestSuite::Initialize() {
132 PlatformTestHelper::SetIsMus(); 132 PlatformTestHelper::SetIsMus();
133 ViewTestSuite::Initialize(); 133 ViewsTestSuite::Initialize();
134 shell_connections_.reset(new ShellConnection); 134 shell_connections_.reset(new ShellConnection);
135 } 135 }
136 136
137 void ViewsMusTestSuite::Shutdown() { 137 void ViewsMusTestSuite::Shutdown() {
138 shell_connections_.reset(); 138 shell_connections_.reset();
139 ViewTestSuite::Shutdown(); 139 ViewsTestSuite::Shutdown();
140 } 140 }
141 141
142 } // namespace views 142 } // namespace views
OLDNEW
« no previous file with comments | « ui/views/mus/views_mus_test_suite.h ('k') | ui/views/run_all_unittests.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698