diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-16 01:29:22 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-16 01:29:22 +0000 |
commit | cd1adc2666bdba7d27a2eac2dbf8b70fb7f3c36e (patch) | |
tree | ed83f1798c522ad4db2a810b458e282835748f0a /chrome/browser/metrics/metrics_response.h | |
parent | 946e05246a5e2a3cd3f9510dd8fd0f6eb84f7d69 (diff) | |
download | chromium_src-cd1adc2666bdba7d27a2eac2dbf8b70fb7f3c36e.zip chromium_src-cd1adc2666bdba7d27a2eac2dbf8b70fb7f3c36e.tar.gz chromium_src-cd1adc2666bdba7d27a2eac2dbf8b70fb7f3c36e.tar.bz2 |
Move metrics files into a subdir
Review URL: http://codereview.chromium.org/18302
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8156 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/metrics/metrics_response.h')
-rw-r--r-- | chrome/browser/metrics/metrics_response.h | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/chrome/browser/metrics/metrics_response.h b/chrome/browser/metrics/metrics_response.h new file mode 100644 index 0000000..c653fcf --- /dev/null +++ b/chrome/browser/metrics/metrics_response.h @@ -0,0 +1,58 @@ +// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +// This class exists to interpret the response from the metrics server. + +#ifndef CHROME_BROWSER_METRICS_RESPONSE_H__ +#define CHROME_BROWSER_METRICS_RESPONSE_H__ + +#include <string> + +#include "base/basictypes.h" + +class MetricsResponse { +public: + // Parses metrics response XML into the information we care about + // (how often to send metrics info, which info to send). + MetricsResponse(const std::string& response_xml); + + // True if the XML passed to the constructor was valid and parseable. + bool valid() { return valid_; } + + // Each flag (except NONE) defined here represents one type of metrics + // event that the server is interested in. + enum CollectorType { + COLLECTOR_NONE = 0x0, + COLLECTOR_PROFILE = 0x1, + COLLECTOR_WINDOW = 0x2, + COLLECTOR_DOCUMENT = 0x4, + COLLECTOR_UI = 0x8 + }; + + // This is the collection of CollectorTypes that are desired by the + // server, ORed together into one value. + int collectors() { return collectors_; } + + // Returns true if the given CollectorType is desired by the server. + bool collector_active(CollectorType type) { return !!(collectors_ & type); } + + // Returns the maximum number of event that the server wants in each + // metrics log sent. (If 0, no value was provided.) + int events() { return events_; } + + // Returns the size of the time interval that the server wants us to include + // in each log (in seconds). (If 0, no value was provided.) + int interval() { return interval_; } + +private: + bool valid_; + int collectors_; + int events_; + int interval_; + + DISALLOW_EVIL_CONSTRUCTORS(MetricsResponse); +}; + +#endif // CHROME_BROWSER_METRICS_RESPONSE_H__ + |