Chromium Code Reviews| 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>; |