blob: 7342b0ae374b2cf040f023059bd549e6c3fdc2b6 (
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
54
|
// Copyright 2018 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 "webrunner/browser/webrunner_net_log.h"
#include <string>
#include <utility>
#include "base/bind.h"
#include "base/callback.h"
#include "base/command_line.h"
#include "base/files/file_path.h"
#include "base/values.h"
#include "net/log/file_net_log_observer.h"
#include "net/log/net_log_util.h"
namespace webrunner {
namespace {
std::unique_ptr<base::DictionaryValue> GetWebRunnerConstants() {
std::unique_ptr<base::DictionaryValue> constants_dict =
net::GetNetConstants();
base::DictionaryValue dict;
dict.SetKey("name", base::Value("webrunner"));
dict.SetKey(
"command_line",
base::Value(
base::CommandLine::ForCurrentProcess()->GetCommandLineString()));
constants_dict->SetKey("clientInfo", std::move(dict));
return constants_dict;
}
} // namespace
WebRunnerNetLog::WebRunnerNetLog(const base::FilePath& log_path) {
if (!log_path.empty()) {
net::NetLogCaptureMode capture_mode = net::NetLogCaptureMode::Default();
file_net_log_observer_ = net::FileNetLogObserver::CreateUnbounded(
log_path, GetWebRunnerConstants());
file_net_log_observer_->StartObserving(this, capture_mode);
}
}
WebRunnerNetLog::~WebRunnerNetLog() {
if (file_net_log_observer_)
file_net_log_observer_->StopObserving(nullptr, base::OnceClosure());
}
} // namespace webrunner
|