summaryrefslogtreecommitdiffstats
path: root/chrome/browser/devtools/devtools_network_conditions.cc
blob: e80172142d8eea43c40d11fa4e5841fba79ec596 (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
// 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.

#include "chrome/browser/devtools/devtools_network_conditions.h"

#include "url/gurl.h"

DevToolsNetworkConditions::DevToolsNetworkConditions()
    : offline_(false),
      latency_(0),
      download_throughput_(0),
      upload_throughput_(0) {
}

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) || (download_throughput_ != 0.0) ||
      (upload_throughput_ != 0));
}