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

Unified Diff: components/data_reduction_proxy/core/browser/BUILD.gn

Issue 1173343009: LevelDB storage for data reduction proxy to store data usage stats. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename classes to remove DataReductionProxy prefix. Created 5 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: components/data_reduction_proxy/core/browser/BUILD.gn
diff --git a/components/data_reduction_proxy/core/browser/BUILD.gn b/components/data_reduction_proxy/core/browser/BUILD.gn
index 22e939a52a57d768b92179a6f5e90df22faa8885..b5d8a9048f77a91edfb2e4c87cd9ab43b8b9ce02 100644
--- a/components/data_reduction_proxy/core/browser/BUILD.gn
+++ b/components/data_reduction_proxy/core/browser/BUILD.gn
@@ -42,8 +42,16 @@ static_library("browser") {
"data_reduction_proxy_service_observer.h",
"data_reduction_proxy_settings.cc",
"data_reduction_proxy_settings.h",
+ "data_reduction_proxy_store.cc",
+ "data_reduction_proxy_store.h",
jeremyim 2015/07/08 18:21:46 Fix file renames here
Not at Google. Contact bengr 2015/07/08 19:07:20 Done.
+ "data_reduction_proxy_store_impl.cc",
+ "data_reduction_proxy_store_impl.h",
"data_reduction_proxy_tamper_detection.cc",
"data_reduction_proxy_tamper_detection.h",
+ "data_usage_store.cc",
+ "data_usage_store.h",
+ "db_service.cc",
+ "db_service.h",
]
deps = [
@@ -54,6 +62,7 @@ static_library("browser") {
"//components/pref_registry",
"//crypto",
"//net",
+ "//third_party/leveldatabase",
"//url",
]
if (!is_android && !is_ios) {
@@ -109,6 +118,7 @@ source_set("unit_tests") {
"data_reduction_proxy_prefs_unittest.cc",
"data_reduction_proxy_request_options_unittest.cc",
"data_reduction_proxy_settings_unittest.cc",
+ "data_usage_store_unittest.cc",
]
configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]

Powered by Google App Engine
This is Rietveld 408576698