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

Side by Side Diff: components/test/components_test_suit.h

Issue 2358063002: Preparing components_perftests (Closed)
Patch Set: Attempt to guess how generate_perf_json.py works Created 4 years, 3 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 | « components/test/DEPS ('k') | components/test/components_test_suit.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2016 The Chromium Authors. All rights reserved.
nduca 2016/09/28 19:46:42 At least from my perspective, this file should be
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef COMPONENTS_TEST_COMPONENTS_TEST_SUIT_H_
6 #define COMPONENTS_TEST_COMPONENTS_TEST_SUIT_H_
7
8 #include <memory>
9
10 #include "base/macros.h"
11 #include "base/test/launcher/unit_test_launcher.h"
12 #include "base/test/test_suite.h"
13
14 class ComponentsTestSuite : public base::TestSuite {
15 public:
16 ComponentsTestSuite(int argc, char** argv);
17 void Initialize() override;
18 void Shutdown() override;
19
20 private:
21 DISALLOW_COPY_AND_ASSIGN(ComponentsTestSuite);
22 };
23
24 // Does some more preparations before launch
25 base::RunTestSuiteCallback CreateCallbackForLaunch(
26 std::unique_ptr<ComponentsTestSuite> test_suite);
27
28 #endif // COMPONENTS_TEST_COMPONENTS_TEST_SUIT_H_
OLDNEW
« no previous file with comments | « components/test/DEPS ('k') | components/test/components_test_suit.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698