| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef SYNC_UTIL_EXTENSIONS_ACTIVITY_MONITOR_H_ | 5 #ifndef SYNC_UTIL_EXTENSIONS_ACTIVITY_MONITOR_H_ |
| 6 #define SYNC_UTIL_EXTENSIONS_ACTIVITY_MONITOR_H_ | 6 #define SYNC_UTIL_EXTENSIONS_ACTIVITY_MONITOR_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 | 13 |
| 14 namespace csync { | 14 namespace syncer { |
| 15 | 15 |
| 16 // An interface to monitor usage of extensions APIs to send to sync | 16 // An interface to monitor usage of extensions APIs to send to sync |
| 17 // servers, with the ability to purge data once sync servers have | 17 // servers, with the ability to purge data once sync servers have |
| 18 // acknowledged it (successful commit response). | 18 // acknowledged it (successful commit response). |
| 19 // | 19 // |
| 20 // All abstract methods are called from the sync thread. | 20 // All abstract methods are called from the sync thread. |
| 21 class ExtensionsActivityMonitor { | 21 class ExtensionsActivityMonitor { |
| 22 public: | 22 public: |
| 23 // A data record of activity performed by extension |extension_id|. | 23 // A data record of activity performed by extension |extension_id|. |
| 24 struct Record { | 24 struct Record { |
| (...skipping 16 matching lines...) Expand all Loading... |
| 41 virtual void GetAndClearRecords(Records* buffer) = 0; | 41 virtual void GetAndClearRecords(Records* buffer) = 0; |
| 42 | 42 |
| 43 // Merge |records| with the current set of records, adding the | 43 // Merge |records| with the current set of records, adding the |
| 44 // bookmark write counts for common Records. | 44 // bookmark write counts for common Records. |
| 45 virtual void PutRecords(const Records& records) = 0; | 45 virtual void PutRecords(const Records& records) = 0; |
| 46 | 46 |
| 47 protected: | 47 protected: |
| 48 virtual ~ExtensionsActivityMonitor(); | 48 virtual ~ExtensionsActivityMonitor(); |
| 49 }; | 49 }; |
| 50 | 50 |
| 51 } // namespace csync | 51 } // namespace syncer |
| 52 | 52 |
| 53 #endif // SYNC_UTIL_EXTENSIONS_ACTIVITY_MONITOR_H_ | 53 #endif // SYNC_UTIL_EXTENSIONS_ACTIVITY_MONITOR_H_ |
| OLD | NEW |