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

Unified Diff: chrome/browser/metrics/metrics_service.h

Issue 14126008: [UMA] Begin ripping out XML uploading code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove a redundant variable Created 7 years, 8 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
« no previous file with comments | « no previous file | chrome/browser/metrics/metrics_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/metrics/metrics_service.h
diff --git a/chrome/browser/metrics/metrics_service.h b/chrome/browser/metrics/metrics_service.h
index dc3fddb4b7f6086f6829003ebdebf916d5b204fc..d236d8b6dd6a84a9a055ed303e30a4045733a401 100644
--- a/chrome/browser/metrics/metrics_service.h
+++ b/chrome/browser/metrics/metrics_service.h
@@ -348,10 +348,6 @@ class MetricsService
// completes (either successfully or with failure).
virtual void OnURLFetchComplete(const net::URLFetcher* source) OVERRIDE;
- // Logs debugging details, for the case where the server returns a response
- // code other than 200.
- void LogBadResponseCode(int response_code, bool is_xml);
-
// Records a window-related notification. |window_or_tab| is either a pointer
// to a WebContents (for a tab) or a Browser (for a window).
void LogWindowOrTabChange(int type, uintptr_t window_or_tab);
@@ -441,12 +437,7 @@ class MetricsService
scoped_ptr<MetricsLog> initial_log_;
// The outstanding transmission appears as a URL Fetch operation.
- scoped_ptr<net::URLFetcher> current_fetch_xml_;
- scoped_ptr<net::URLFetcher> current_fetch_proto_;
-
- // The URLs for the XML and protobuf metrics servers.
- string16 server_url_xml_;
- string16 server_url_proto_;
+ scoped_ptr<net::URLFetcher> current_fetch_;
// The TCP/UDP echo server to collect network connectivity stats.
std::string network_stats_server_;
« no previous file with comments | « no previous file | chrome/browser/metrics/metrics_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698