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

Side by Side Diff: sync/util/extensions_activity_monitor.h

Issue 10698014: [Sync] Rename csync namespace to syncer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 8 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
« no previous file with comments | « sync/util/encryptor.h ('k') | sync/util/extensions_activity_monitor.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « sync/util/encryptor.h ('k') | sync/util/extensions_activity_monitor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698