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

Side by Side Diff: components/data_reduction_proxy/core/browser/data_reduction_proxy_config.cc

Issue 1546143002: Switch to standard integer types in components/, 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "components/data_reduction_proxy/core/browser/data_reduction_proxy_conf ig.h" 5 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_conf ig.h"
6 6
7 #include <stddef.h>
8
7 #include <vector> 9 #include <vector>
8 10
9 #include "base/bind.h" 11 #include "base/bind.h"
10 #include "base/bind_helpers.h" 12 #include "base/bind_helpers.h"
13 #include "base/macros.h"
11 #include "base/metrics/field_trial.h" 14 #include "base/metrics/field_trial.h"
12 #include "base/metrics/histogram_macros.h" 15 #include "base/metrics/histogram_macros.h"
13 #include "base/metrics/sparse_histogram.h" 16 #include "base/metrics/sparse_histogram.h"
14 #include "base/strings/string_number_conversions.h" 17 #include "base/strings/string_number_conversions.h"
15 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_conf igurator.h" 18 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_conf igurator.h"
16 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_confi g_values.h" 19 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_confi g_values.h"
17 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_event _creator.h" 20 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_event _creator.h"
18 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_param s.h" 21 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_param s.h"
19 #include "components/variations/variations_associated_data.h" 22 #include "components/variations/variations_associated_data.h"
20 #include "net/base/host_port_pair.h" 23 #include "net/base/host_port_pair.h"
(...skipping 851 matching lines...) Expand 10 before | Expand all | Expand 10 after
872 return false; 875 return false;
873 } 876 }
874 877
875 void DataReductionProxyConfig::GetNetworkList( 878 void DataReductionProxyConfig::GetNetworkList(
876 net::NetworkInterfaceList* interfaces, 879 net::NetworkInterfaceList* interfaces,
877 int policy) { 880 int policy) {
878 net::GetNetworkList(interfaces, policy); 881 net::GetNetworkList(interfaces, policy);
879 } 882 }
880 883
881 } // namespace data_reduction_proxy 884 } // namespace data_reduction_proxy
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698