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

Unified Diff: components/data_reduction_proxy/core/common/data_reduction_proxy_pref_names.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 5 years 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 side-by-side diff with in-line comments
Download patch
Index: components/data_reduction_proxy/core/common/data_reduction_proxy_pref_names.cc
diff --git a/components/data_reduction_proxy/core/common/data_reduction_proxy_pref_names.cc b/components/data_reduction_proxy/core/common/data_reduction_proxy_pref_names.cc
index 0c60c73d64b5acd98e58f7b0eccc19ac15e54f23..db8f1815d13ff7284add8afa36286c556be3afb7 100644
--- a/components/data_reduction_proxy/core/common/data_reduction_proxy_pref_names.cc
+++ b/components/data_reduction_proxy/core/common/data_reduction_proxy_pref_names.cc
@@ -2,6 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include <stdint.h>
+
#include "components/data_reduction_proxy/core/common/data_reduction_proxy_pref_names.h"
namespace data_reduction_proxy {
@@ -76,7 +78,7 @@ const char kDailyContentLengthWithDataReductionProxyEnabledUnknown[] =
"data_reduction.daily_received_length_with_data_reduction_proxy_enabled_"
"unknown";
-// An int64 pref that contains an internal representation of midnight on the
+// An int64_t pref that contains an internal representation of midnight on the
// date of the last update to |kDailyHttp{Original,Received}ContentLength|.
const char kDailyHttpContentLengthLastUpdateDate[] =
"data_reduction.last_update_date";
@@ -183,11 +185,11 @@ const char kDataUsageReportingEnabled[] = "data_usage_reporting.enabled";
const char kDataReductionProxyWasEnabledBefore[] =
"spdy_proxy.was_enabled_before";
-// An int64 pref that contains the total size of all HTTP content received from
-// the network.
+// An int64_t pref that contains the total size of all HTTP content received
+// from the network.
const char kHttpReceivedContentLength[] = "http_received_content_length";
-// An int64 pref that contains the total original size of all HTTP content
+// An int64_t pref that contains the total original size of all HTTP content
// received over the network.
const char kHttpOriginalContentLength[] = "http_original_content_length";

Powered by Google App Engine
This is Rietveld 408576698