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

Unified Diff: components/update_client/configurator.h

Issue 1861383004: Add module for counting date-last-roll-call and persisting those counts (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ThreadChecker fix Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: components/update_client/configurator.h
diff --git a/components/update_client/configurator.h b/components/update_client/configurator.h
index 177c4a7771b19a5142da98b2411be356e7cc902c..b65f42ad0402b2c8fc07208555e5e5e1fdadc596 100644
--- a/components/update_client/configurator.h
+++ b/components/update_client/configurator.h
@@ -14,6 +14,7 @@
class GURL;
namespace base {
+class FilePath;
class SequencedTaskRunner;
class Version;
}
@@ -111,6 +112,10 @@ class Configurator : public base::RefCountedThreadSafe<Configurator> {
virtual scoped_refptr<base::SequencedTaskRunner> GetSequencedTaskRunner()
const = 0;
+ // Returns a path at which metadata information about updatable items can be
+ // persisted. If the path is .empty(), no information will be persisted.
+ virtual base::FilePath GetMetadataPath() const = 0;
Sorin Jianu 2016/04/07 18:53:50 maybe rename to GetPersistedDataPath?
waffles 2016/04/07 22:45:18 Moot.
+
protected:
friend class base::RefCountedThreadSafe<Configurator>;

Powered by Google App Engine
This is Rietveld 408576698