diff options
author | cpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-28 05:43:37 +0000 |
---|---|---|
committer | cpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-28 05:43:37 +0000 |
commit | e324f6b9b93237c1488694b2a94cff0f8ec85460 (patch) | |
tree | 6b7ec91ccdf30bc794d8f837fcaac335f8a43afa /chrome_frame/metrics_service.cc | |
parent | cce1cd0b2c227ab0c94276fbd1cc5155fc7b9943 (diff) | |
download | chromium_src-e324f6b9b93237c1488694b2a94cff0f8ec85460.zip chromium_src-e324f6b9b93237c1488694b2a94cff0f8ec85460.tar.gz chromium_src-e324f6b9b93237c1488694b2a94cff0f8ec85460.tar.bz2 |
Revert 123901 - Upload UMA data using protocol buffers.
For now, we will also preserve the existing XML upload system, so that there is no risk of data loss.
BUG=109817
TEST=unit tested
Review URL: http://codereview.chromium.org/9232071
TBR=isherman@chromium.org
Review URL: https://chromiumcodereview.appspot.com/9478031
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@123908 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/metrics_service.cc')
-rw-r--r-- | chrome_frame/metrics_service.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/chrome_frame/metrics_service.cc b/chrome_frame/metrics_service.cc index 622a892..01e3c50 100644 --- a/chrome_frame/metrics_service.cc +++ b/chrome_frame/metrics_service.cc @@ -419,8 +419,6 @@ bool MetricsService::TransmissionPermitted() const { return user_permits_upload_; } -// TODO(isherman): Update this to log to the protobuf server as well... -// http://crbug.com/109817 bool MetricsService::UploadData() { DCHECK_EQ(thread_, base::PlatformThread::CurrentId()); @@ -443,7 +441,7 @@ bool MetricsService::UploadData() { ret = false; } else { HRESULT hr = ChromeFrameMetricsDataUploader::UploadDataHelper( - log_manager_.staged_log_text().xml); + log_manager_.staged_log_text()); DCHECK(SUCCEEDED(hr)); } log_manager_.DiscardStagedLog(); |