| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/common/data_reduction_proxy_pref_names
.h" | 5 #include "components/data_reduction_proxy/common/data_reduction_proxy_pref_names
.h" |
| 6 | 6 |
| 7 namespace data_reduction_proxy { | 7 namespace data_reduction_proxy { |
| 8 namespace prefs { | 8 namespace prefs { |
| 9 | 9 |
| 10 // A List pref that contains daily totals of the size of all HTTPS | 10 // A List pref that contains daily totals of the size of all HTTPS |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 "spdy_proxy.was_enabled_before"; | 81 "spdy_proxy.was_enabled_before"; |
| 82 | 82 |
| 83 // An int64 pref that contains the total size of all HTTP content received from | 83 // An int64 pref that contains the total size of all HTTP content received from |
| 84 // the network. | 84 // the network. |
| 85 const char kHttpReceivedContentLength[] = "http_received_content_length"; | 85 const char kHttpReceivedContentLength[] = "http_received_content_length"; |
| 86 | 86 |
| 87 // An int64 pref that contains the total original size of all HTTP content | 87 // An int64 pref that contains the total original size of all HTTP content |
| 88 // received over the network. | 88 // received over the network. |
| 89 const char kHttpOriginalContentLength[] = "http_original_content_length"; | 89 const char kHttpOriginalContentLength[] = "http_original_content_length"; |
| 90 | 90 |
| 91 // A boolean specifying whether the data reduction proxy statistics preferences |
| 92 // have migrated from local state to the profile. |
| 93 const char kStatisticsPrefsMigrated[] = |
| 94 "data_reduction.statistics_prefs_migrated"; |
| 95 |
| 91 } // namespace prefs | 96 } // namespace prefs |
| 92 } // namespace data_reduction_proxy | 97 } // namespace data_reduction_proxy |
| OLD | NEW |