| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_SYNC_UTIL_EXTENSIONS_ACTIVITY_MONITOR_H_ | |
| 6 #define CHROME_BROWSER_SYNC_UTIL_EXTENSIONS_ACTIVITY_MONITOR_H_ | |
| 7 #pragma once | |
| 8 | |
| 9 #include <map> | |
| 10 #include <string> | |
| 11 | |
| 12 #include "base/basictypes.h" | |
| 13 | |
| 14 namespace browser_sync { | |
| 15 | |
| 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 | |
| 18 // acknowledged it (successful commit response). | |
| 19 // | |
| 20 // All abstract methods are called from the sync thread. | |
| 21 class ExtensionsActivityMonitor { | |
| 22 public: | |
| 23 // A data record of activity performed by extension |extension_id|. | |
| 24 struct Record { | |
| 25 Record(); | |
| 26 ~Record(); | |
| 27 | |
| 28 // The human-readable ID identifying the extension responsible | |
| 29 // for the activity reported in this Record. | |
| 30 std::string extension_id; | |
| 31 | |
| 32 // How many times the extension successfully invoked a write | |
| 33 // operation through the bookmarks API since the last CommitMessage. | |
| 34 uint32 bookmark_write_count; | |
| 35 }; | |
| 36 | |
| 37 typedef std::map<std::string, Record> Records; | |
| 38 | |
| 39 // Fill |buffer| with all current records and then clear the | |
| 40 // internal records. | |
| 41 virtual void GetAndClearRecords(Records* buffer) = 0; | |
| 42 | |
| 43 // Merge |records| with the current set of records, adding the | |
| 44 // bookmark write counts for common Records. | |
| 45 virtual void PutRecords(const Records& records) = 0; | |
| 46 | |
| 47 protected: | |
| 48 virtual ~ExtensionsActivityMonitor(); | |
| 49 }; | |
| 50 | |
| 51 } // namespace browser_sync | |
| 52 | |
| 53 #endif // CHROME_BROWSER_SYNC_UTIL_EXTENSIONS_ACTIVITY_MONITOR_H_ | |
| OLD | NEW |