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

Side by Side Diff: chrome/browser/net/chrome_network_delegate.h

Issue 1355893004: Complete the layered architecture of data_use_measurement component. Base URL: https://chromium.googlesource.com/chromium/src.git@NewArchServices
Patch Set: Created 5 years, 3 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
« no previous file with comments | « no previous file | chrome/browser/net/chrome_network_delegate.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef CHROME_BROWSER_NET_CHROME_NETWORK_DELEGATE_H_ 5 #ifndef CHROME_BROWSER_NET_CHROME_NETWORK_DELEGATE_H_
6 #define CHROME_BROWSER_NET_CHROME_NETWORK_DELEGATE_H_ 6 #define CHROME_BROWSER_NET_CHROME_NETWORK_DELEGATE_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <string> 10 #include <string>
11 11
12 #include "base/basictypes.h" 12 #include "base/basictypes.h"
13 #include "base/compiler_specific.h" 13 #include "base/compiler_specific.h"
14 #include "base/files/file_path.h" 14 #include "base/files/file_path.h"
15 #include "base/memory/ref_counted.h" 15 #include "base/memory/ref_counted.h"
16 #include "base/memory/scoped_ptr.h" 16 #include "base/memory/scoped_ptr.h"
17 #include "base/values.h" 17 #include "base/values.h"
18 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_metr ics.h" 18 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_metr ics.h"
19 #include "net/base/network_delegate_impl.h" 19 #include "net/base/network_delegate_impl.h"
20 20
21 #if !defined(OS_IOS) 21 #if !defined(OS_IOS)
22 #include "components/data_use_measurement/content/data_use_measurement.h" 22 #include <components/data_use_measurement/core/data_use_measurement.h>
23 #endif 23 #endif
24 24
25 class ChromeExtensionsNetworkDelegate; 25 class ChromeExtensionsNetworkDelegate;
26 class PrefService; 26 class PrefService;
27 27
28 template<class T> class PrefMember; 28 template<class T> class PrefMember;
29 29
30 typedef PrefMember<bool> BooleanPrefMember; 30 typedef PrefMember<bool> BooleanPrefMember;
31 31
32 namespace base { 32 namespace base {
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 #if !defined(OS_IOS) 210 #if !defined(OS_IOS)
211 data_use_measurement::DataUseMeasurement data_use_measurement_; 211 data_use_measurement::DataUseMeasurement data_use_measurement_;
212 #endif 212 #endif
213 213
214 bool experimental_web_platform_features_enabled_; 214 bool experimental_web_platform_features_enabled_;
215 215
216 DISALLOW_COPY_AND_ASSIGN(ChromeNetworkDelegate); 216 DISALLOW_COPY_AND_ASSIGN(ChromeNetworkDelegate);
217 }; 217 };
218 218
219 #endif // CHROME_BROWSER_NET_CHROME_NETWORK_DELEGATE_H_ 219 #endif // CHROME_BROWSER_NET_CHROME_NETWORK_DELEGATE_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/net/chrome_network_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698