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

Side by Side Diff: components/net_log/chrome_net_log.cc

Issue 1551433002: Switch to standard integer types in components/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more 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 (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 #include "components/net_log/chrome_net_log.h" 5 #include "components/net_log/chrome_net_log.h"
6 6
7 #include <stdio.h> 7 #include <stdio.h>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/files/scoped_file.h" 10 #include "base/files/scoped_file.h"
11 #include "base/logging.h" 11 #include "base/logging.h"
12 #include "base/strings/stringprintf.h" 12 #include "base/strings/stringprintf.h"
13 #include "base/sys_info.h" 13 #include "base/sys_info.h"
14 #include "base/values.h" 14 #include "base/values.h"
15 #include "build/build_config.h"
15 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_event _store.h" 16 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_event _store.h"
16 #include "components/net_log/net_log_temp_file.h" 17 #include "components/net_log/net_log_temp_file.h"
17 #include "components/net_log/net_log_temp_file.h" 18 #include "components/net_log/net_log_temp_file.h"
18 #include "components/version_info/version_info.h" 19 #include "components/version_info/version_info.h"
19 #include "net/log/net_log_util.h" 20 #include "net/log/net_log_util.h"
20 #include "net/log/trace_net_log_observer.h" 21 #include "net/log/trace_net_log_observer.h"
21 #include "net/log/write_to_file_net_log_observer.h" 22 #include "net/log/write_to_file_net_log_observer.h"
22 23
23 namespace net_log { 24 namespace net_log {
24 25
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 constants_dict->Set("clientInfo", dict); 101 constants_dict->Set("clientInfo", dict);
101 102
102 data_reduction_proxy::DataReductionProxyEventStore::AddConstants( 103 data_reduction_proxy::DataReductionProxyEventStore::AddConstants(
103 constants_dict.get()); 104 constants_dict.get());
104 } 105 }
105 106
106 return constants_dict.release(); 107 return constants_dict.release();
107 } 108 }
108 109
109 } // namespace net_log 110 } // namespace net_log
OLDNEW
« no previous file with comments | « components/navigation_metrics/navigation_metrics.cc ('k') | components/net_log/net_log_temp_file.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698