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

Side by Side Diff: components/test_runner/test_info_extractor.h

Issue 1549993003: Switch to standard integer types in components/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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_runner/test_common.cc ('k') | components/test_runner/test_info_extractor.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 2015 The Chromium Authors. All rights reserved. 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 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 #ifndef COMPONENTS_TEST_RUNNER_TEST_INFO_EXTRACTOR_H_ 5 #ifndef COMPONENTS_TEST_RUNNER_TEST_INFO_EXTRACTOR_H_
6 #define COMPONENTS_TEST_RUNNER_TEST_INFO_EXTRACTOR_H_ 6 #define COMPONENTS_TEST_RUNNER_TEST_INFO_EXTRACTOR_H_
7 7
8 #include <stddef.h>
9
8 #include <string> 10 #include <string>
9 11
10 #include "base/command_line.h" 12 #include "base/command_line.h"
11 #include "base/files/file_path.h" 13 #include "base/files/file_path.h"
14 #include "base/macros.h"
12 #include "components/test_runner/test_runner_export.h" 15 #include "components/test_runner/test_runner_export.h"
13 #include "url/gurl.h" 16 #include "url/gurl.h"
14 17
15 namespace test_runner { 18 namespace test_runner {
16 19
17 struct TEST_RUNNER_EXPORT TestInfo { 20 struct TEST_RUNNER_EXPORT TestInfo {
18 TestInfo(const GURL& url, 21 TestInfo(const GURL& url,
19 bool enable_pixel_dumping, 22 bool enable_pixel_dumping,
20 const std::string& expected_pixel_hash, 23 const std::string& expected_pixel_hash,
21 const base::FilePath& current_working_directory); 24 const base::FilePath& current_working_directory);
(...skipping 15 matching lines...) Expand all
37 private: 40 private:
38 base::CommandLine::StringVector cmdline_args_; 41 base::CommandLine::StringVector cmdline_args_;
39 size_t cmdline_position_; 42 size_t cmdline_position_;
40 43
41 DISALLOW_COPY_AND_ASSIGN(TestInfoExtractor); 44 DISALLOW_COPY_AND_ASSIGN(TestInfoExtractor);
42 }; 45 };
43 46
44 } // namespace test_runner 47 } // namespace test_runner
45 48
46 #endif // COMPONENTS_TEST_RUNNER_TEST_INFO_EXTRACTOR_H_ 49 #endif // COMPONENTS_TEST_RUNNER_TEST_INFO_EXTRACTOR_H_
OLDNEW
« no previous file with comments | « components/test_runner/test_common.cc ('k') | components/test_runner/test_info_extractor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698