diff options
author | blundell <blundell@chromium.org> | 2015-08-25 05:22:27 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-08-25 12:23:06 +0000 |
commit | 64fedf1a9022ce13d9885cf3bebac417f4a73b45 (patch) | |
tree | 8175ebf96b5538ca49c7ec5e8da71604ee8b5a31 /sync/internal_api | |
parent | 2937bd298c392a6e3b320991958cee152be307b7 (diff) | |
download | chromium_src-64fedf1a9022ce13d9885cf3bebac417f4a73b45.zip chromium_src-64fedf1a9022ce13d9885cf3bebac417f4a73b45.tar.gz chromium_src-64fedf1a9022ce13d9885cf3bebac417f4a73b45.tar.bz2 |
Move //components/metrics/compression_utils into standalone component
This file is used by code in //chrome/browser/metrics/variations that itself is
slated for componentization. As //components/metrics depends on
//components/variations, the code in question would not be able to be
componentized into //components/variations. To enable that, this CL moves
compression_utils* to a standalone lower-level component.
BUG=516662, 515695
TBR=agl
Review URL: https://codereview.chromium.org/1304563003
Cr-Commit-Position: refs/heads/master@{#345309}
Diffstat (limited to 'sync/internal_api')
-rw-r--r-- | sync/internal_api/http_bridge.cc | 4 | ||||
-rw-r--r-- | sync/internal_api/http_bridge_unittest.cc | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sync/internal_api/http_bridge.cc b/sync/internal_api/http_bridge.cc index e5729f2..04e339c 100644 --- a/sync/internal_api/http_bridge.cc +++ b/sync/internal_api/http_bridge.cc @@ -62,9 +62,9 @@ void RecordSyncResponseContentLengthHistograms(int64 compressed_content_length, // ----------------------------------------------------------------------------- // The rest of the code in the anon namespace is copied from -// components/metrics/compression_utils.cc +// components/compression/compression_utils.cc // TODO(gangwu): crbug.com/515695. The following code is copied from -// components/metrics/compression_utils.cc. We copied them because if we +// components/compression/compression_utils.cc. We copied them because if we // reference them, we will get cycle dependency warning. Once the functions // have been moved from //component to //base, we can remove the following // functions. diff --git a/sync/internal_api/http_bridge_unittest.cc b/sync/internal_api/http_bridge_unittest.cc index 24fc6cd..4ea4e70 100644 --- a/sync/internal_api/http_bridge_unittest.cc +++ b/sync/internal_api/http_bridge_unittest.cc @@ -27,9 +27,9 @@ const base::FilePath::CharType kDocRoot[] = // ----------------------------------------------------------------------------- // The rest of the code in the anon namespace is copied from -// components/metrics/compression_utils.cc +// components/compression/compression_utils.cc // TODO(gangwu): crbug.com/515695. The following codes are copied from -// components/metrics/compression_utils.cc, we copied them because if we +// components/compression/compression_utils.cc, we copied them because if we // reference them, we will get cycle dependency warning. Once the functions // have been moved from //component to //base, we can remove the following // functions. |