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

Side by Side Diff: chrome/browser/diagnostics/diagnostics_test.cc

Issue 1542413002: Switch to standard integer types in chrome/browser/, part 1 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "chrome/browser/diagnostics/diagnostics_test.h" 5 #include "chrome/browser/diagnostics/diagnostics_test.h"
6 6
7 #include "base/files/file_path.h" 7 #include "base/files/file_path.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/metrics/histogram.h" 9 #include "base/metrics/histogram.h"
10 #include "base/path_service.h" 10 #include "base/path_service.h"
11 #include "build/build_config.h"
11 #include "chrome/common/chrome_constants.h" 12 #include "chrome/common/chrome_constants.h"
12 #include "chrome/common/chrome_paths.h" 13 #include "chrome/common/chrome_paths.h"
13 14
14 namespace diagnostics { 15 namespace diagnostics {
15 16
16 DiagnosticsTest::DiagnosticsTest(DiagnosticsTestId id) 17 DiagnosticsTest::DiagnosticsTest(DiagnosticsTestId id)
17 : id_(id), outcome_code_(-1), result_(DiagnosticsModel::TEST_NOT_RUN) {} 18 : id_(id), outcome_code_(-1), result_(DiagnosticsModel::TEST_NOT_RUN) {}
18 19
19 DiagnosticsTest::~DiagnosticsTest() {} 20 DiagnosticsTest::~DiagnosticsTest() {}
20 21
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 103
103 base::Time DiagnosticsTest::GetStartTime() const { return start_time_; } 104 base::Time DiagnosticsTest::GetStartTime() const { return start_time_; }
104 105
105 base::Time DiagnosticsTest::GetEndTime() const { return end_time_; } 106 base::Time DiagnosticsTest::GetEndTime() const { return end_time_; }
106 107
107 bool DiagnosticsTest::RecoveryImpl(DiagnosticsModel::Observer* observer) { 108 bool DiagnosticsTest::RecoveryImpl(DiagnosticsModel::Observer* observer) {
108 return true; 109 return true;
109 } 110 }
110 111
111 } // namespace diagnostics 112 } // namespace diagnostics
OLDNEW
« no previous file with comments | « chrome/browser/diagnostics/diagnostics_test.h ('k') | chrome/browser/diagnostics/diagnostics_writer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698