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

Unified Diff: components/data_use_measurement/BUILD.gn

Issue 1279543002: Support needed to measure user and service traffic in Chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@NewHistogram
Patch Set: Removing few commented lines. Created 5 years, 4 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_use_measurement/BUILD.gn
diff --git a/components/network_hints/browser/BUILD.gn b/components/data_use_measurement/BUILD.gn
similarity index 51%
copy from components/network_hints/browser/BUILD.gn
copy to components/data_use_measurement/BUILD.gn
index aafe3eb8d062bee9dd98857a116f4e2c32b78dbe..df5c38ef8b33942dc3a1a0bd79ce2a124453114a 100644
--- a/components/network_hints/browser/BUILD.gn
+++ b/components/data_use_measurement/BUILD.gn
@@ -2,15 +2,16 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-# GYP version: components/network_hints.gypi:network_hints_browser
-source_set("browser") {
+source_set("data_use_measurement") {
sources = [
- "network_hints_message_filter.cc",
- "network_hints_message_filter.h",
+ "content/data_use_user_data.cc",
+ "content/data_use_user_data.h",
+ "core/data_use_measurement.cc",
+ "core/data_use_measurement.h",
]
-
public_deps = [
"//content/public/browser",
- "//net",
+ "//net/base",
+ "//net/url_request",
]
}

Powered by Google App Engine
This is Rietveld 408576698