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

Side by Side Diff: chrome/browser/extensions/api/storage/sync_value_store_cache.h

Issue 2965153002: Migrate Extensions code to Task Scheduler API (Closed)
Patch Set: Self review Created 3 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 CHROME_BROWSER_EXTENSIONS_API_STORAGE_SYNC_VALUE_STORE_CACHE_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_STORAGE_SYNC_VALUE_STORE_CACHE_H_
6 #define CHROME_BROWSER_EXTENSIONS_API_STORAGE_SYNC_VALUE_STORE_CACHE_H_ 6 #define CHROME_BROWSER_EXTENSIONS_API_STORAGE_SYNC_VALUE_STORE_CACHE_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 27 matching lines...) Expand all
38 38
39 syncer::SyncableService* GetSyncableService(syncer::ModelType type) const; 39 syncer::SyncableService* GetSyncableService(syncer::ModelType type) const;
40 40
41 // ValueStoreCache implementation: 41 // ValueStoreCache implementation:
42 void RunWithValueStoreForExtension( 42 void RunWithValueStoreForExtension(
43 const StorageCallback& callback, 43 const StorageCallback& callback,
44 scoped_refptr<const Extension> extension) override; 44 scoped_refptr<const Extension> extension) override;
45 void DeleteStorageSoon(const std::string& extension_id) override; 45 void DeleteStorageSoon(const std::string& extension_id) override;
46 46
47 private: 47 private:
48 void InitOnFileThread(const scoped_refptr<ValueStoreFactory>& factory, 48 void InitOnBackend(const scoped_refptr<ValueStoreFactory>& factory,
49 const scoped_refptr<SettingsObserverList>& observers, 49 const scoped_refptr<SettingsObserverList>& observers,
50 const base::FilePath& profile_path); 50 const base::FilePath& profile_path);
51 51
52 bool initialized_; 52 bool initialized_;
53 std::unique_ptr<SyncStorageBackend> app_backend_; 53 std::unique_ptr<SyncStorageBackend> app_backend_;
54 std::unique_ptr<SyncStorageBackend> extension_backend_; 54 std::unique_ptr<SyncStorageBackend> extension_backend_;
55 55
56 DISALLOW_COPY_AND_ASSIGN(SyncValueStoreCache); 56 DISALLOW_COPY_AND_ASSIGN(SyncValueStoreCache);
57 }; 57 };
58 58
59 } // namespace extensions 59 } // namespace extensions
60 60
61 #endif // CHROME_BROWSER_EXTENSIONS_API_STORAGE_SYNC_VALUE_STORE_CACHE_H_ 61 #endif // CHROME_BROWSER_EXTENSIONS_API_STORAGE_SYNC_VALUE_STORE_CACHE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698