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

Side by Side Diff: chrome/browser/component_updater/component_updater_ping_manager.h

Issue 18516010: Implemented completion pings for component updates. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698