Chromium Code Reviews| 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_EXTENSIONS_SETTINGS_MANAGED_VALUE_STORE_CACHE_H_ | |
| 6 #define CHROME_BROWSER_EXTENSIONS_SETTINGS_MANAGED_VALUE_STORE_CACHE_H_ | |
| 7 | |
| 8 #include "base/basictypes.h" | |
| 9 #include "base/compiler_specific.h" | |
| 10 #include "chrome/browser/extensions/settings/value_store_cache.h" | |
| 11 | |
| 12 class Profile; | |
| 13 | |
| 14 namespace extensions { | |
| 15 | |
| 16 // TODO(joaodasilva): this is a work in progress. http://crbug.com/108992 | |
| 17 class ManagedValueStoreCache : public ValueStoreCache { | |
| 18 public: | |
| 19 explicit ManagedValueStoreCache(Profile* profile); | |
|
not at google - send to devlin
2012/07/19 06:43:17
Like I said can it just be given the policy-specif
Joao da Silva
2012/07/19 11:26:04
Done.
| |
| 20 virtual ~ManagedValueStoreCache(); | |
| 21 | |
| 22 // ValueStoreCache implementation: | |
| 23 | |
| 24 virtual scoped_refptr<base::MessageLoopProxy> GetMessageLoop() const OVERRIDE; | |
| 25 | |
| 26 virtual void RunWithValueStoreForExtension( | |
| 27 const StorageCallback& callback, | |
| 28 scoped_refptr<const Extension> extension) OVERRIDE; | |
|
not at google - send to devlin
2012/07/19 06:43:17
Does forcing this to be a scoped_refptr make sense
Joao da Silva
2012/07/19 11:26:04
This method is invoked as an asynchronous callback
not at google - send to devlin
2012/07/19 12:29:52
Ah I see. I just read through the base/bind relate
Joao da Silva
2012/07/19 13:17:51
Yep, done.
| |
| 29 | |
| 30 virtual void DeleteStorageSoon(const std::string& extension_id) OVERRIDE; | |
| 31 | |
| 32 private: | |
| 33 DISALLOW_COPY_AND_ASSIGN(ManagedValueStoreCache); | |
| 34 }; | |
| 35 | |
| 36 } // namespace extensions | |
| 37 | |
| 38 #endif // CHROME_BROWSER_EXTENSIONS_SETTINGS_MANAGED_VALUE_STORE_CACHE_H_ | |
| OLD | NEW |