2015-09-26 18:19:27 +00:00
|
|
|
// Copyright 2014 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.
|
|
|
|
|
2017-05-18 22:58:12 +00:00
|
|
|
#include "brightray/browser/net/devtools_network_conditions.h"
|
2015-09-26 18:19:27 +00:00
|
|
|
|
|
|
|
namespace brightray {
|
|
|
|
|
|
|
|
DevToolsNetworkConditions::DevToolsNetworkConditions(bool offline)
|
|
|
|
: offline_(offline),
|
|
|
|
latency_(0),
|
|
|
|
download_throughput_(0),
|
|
|
|
upload_throughput_(0) {
|
|
|
|
}
|
|
|
|
|
|
|
|
DevToolsNetworkConditions::DevToolsNetworkConditions(
|
|
|
|
bool offline,
|
|
|
|
double latency,
|
|
|
|
double download_throughput,
|
|
|
|
double upload_throughput)
|
|
|
|
: offline_(offline),
|
|
|
|
latency_(latency),
|
|
|
|
download_throughput_(download_throughput),
|
|
|
|
upload_throughput_(upload_throughput) {
|
|
|
|
}
|
|
|
|
|
|
|
|
DevToolsNetworkConditions::~DevToolsNetworkConditions() {
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DevToolsNetworkConditions::IsThrottling() const {
|
|
|
|
return !offline_ && ((latency_ != 0.0) || (download_throughput_ != 0.0) ||
|
|
|
|
(upload_throughput_ != 0.0));
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace brightray
|