blob: 2e4676638a6c320700ef82fd422aa7bd9bf41262 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/diagnostics/diagnostics_test.h"
#include "base/file_path.h"
#include "base/path_service.h"
#include "chrome/common/chrome_constants.h"
#include "chrome/common/chrome_paths.h"
DiagnosticTest::DiagnosticTest(const string16& title)
: title_(title), result_(DiagnosticsModel::TEST_NOT_RUN) {
}
DiagnosticTest::~DiagnosticTest() {
}
bool DiagnosticTest::Execute(DiagnosticsModel::Observer* observer,
DiagnosticsModel* model,
size_t index) {
result_ = DiagnosticsModel::TEST_RUNNING;
observer->OnProgress(index, 0, model);
bool keep_going = ExecuteImpl(observer);
observer->OnFinished(index, model);
return keep_going;
}
string16 DiagnosticTest::GetTitle() {
return title_;
}
DiagnosticsModel::TestResult DiagnosticTest::GetResult() {
return result_;
}
string16 DiagnosticTest::GetAdditionalInfo() {
return additional_info_;
}
void DiagnosticTest::RecordOutcome(const string16& additional_info,
DiagnosticsModel::TestResult result) {
additional_info_ = additional_info;
result_ = result;
}
// static
base::FilePath DiagnosticTest::GetUserDefaultProfileDir() {
base::FilePath path;
if (!PathService::Get(chrome::DIR_USER_DATA, &path))
return base::FilePath();
return path.AppendASCII(chrome::kInitialProfile);
}
|