Chromium Code Reviews| Index: chrome/browser/component_updater/component_updater_ping_manager.h |
| diff --git a/chrome/browser/component_updater/component_updater_ping_manager.h b/chrome/browser/component_updater/component_updater_ping_manager.h |
| index 1bb0a8b9dd3f5fd442f991d68c7212168ffd71f5..cd655c682bdf5ffe769f22d2a19ba73a3ff2d1db 100644 |
| --- a/chrome/browser/component_updater/component_updater_ping_manager.h |
| +++ b/chrome/browser/component_updater/component_updater_ping_manager.h |
| @@ -20,13 +20,16 @@ struct CrxUpdateItem; |
| // and sends fire-and-forget pings when handling these events. |
| class PingManager { |
| public: |
| - PingManager(const GURL& ping_url, |
| + PingManager(const std::string& chrome_version, |
|
blundell
2014/06/17 17:26:43
s/chrome_version/application_version (since the co
tommycli
2014/06/17 19:01:57
Done.
|
| + const std::string& platform_name, const GURL& ping_url, |
| net::URLRequestContextGetter* url_request_context_getter); |
| ~PingManager(); |
| void OnUpdateComplete(const CrxUpdateItem* item); |
| private: |
| + const std::string chrome_version_; |
| + const std::string platform_name_; |
| const GURL ping_url_; |
| // This member is not owned by this class. |