| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_COMPONENT_UPDATER_COMPONENT_UPDATER_PING_MANAGER_H_ |
| 6 #define CHROME_BROWSER_COMPONENT_UPDATER_COMPONENT_UPDATER_PING_MANAGER_H_ |
| 7 |
| 8 #include <string> |
| 9 #include "base/basictypes.h" |
| 10 #include "base/compiler_specific.h" |
| 11 #include "chrome/browser/component_updater/component_updater_service.h" |
| 12 #include "chrome/browser/component_updater/component_updater_service_observer.h" |
| 13 |
| 14 namespace component_updater { |
| 15 |
| 16 class PingManager : public ComponentUpdaterServiceObserver { |
| 17 public: |
| 18 explicit PingManager(ComponentUpdateService::Configurator* configurator); |
| 19 |
| 20 virtual ~PingManager(); |
| 21 |
| 22 private: |
| 23 // Overrides for ComponentUpdaterServiceObserver. |
| 24 virtual void OnUpdateComplete(const CrxUpdateItem* item) OVERRIDE; |
| 25 |
| 26 ComponentUpdateService::Configurator* config_; |
| 27 |
| 28 DISALLOW_COPY_AND_ASSIGN(PingManager); |
| 29 }; |
| 30 |
| 31 } // namespace component_updater |
| 32 |
| 33 #endif // CHROME_BROWSER_COMPONENT_UPDATER_COMPONENT_UPDATER_PING_MANAGER_H_ |
| 34 |
| OLD | NEW |