Searched defs:StorageFrontend (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/extensions/browser/api/storage/
H A Dstorage_frontend.cc28 base::LazyInstance<BrowserContextKeyedAPIFactory<StorageFrontend> > g_factory =
62 StorageFrontend* StorageFrontend::Get(BrowserContext* context) {
63 return BrowserContextKeyedAPIFactory<StorageFrontend>::Get(context);
67 StorageFrontend* StorageFrontend::CreateForTesting(
70 return new StorageFrontend(storage_factory, context);
73 StorageFrontend::StorageFrontend(BrowserContext* context) function in class:extensions::StorageFrontend
78 StorageFrontend function in class:extensions::StorageFrontend
[all...]
H A Dstorage_frontend.h26 class StorageFrontend : public BrowserContextKeyedAPI { class in namespace:extensions
29 static StorageFrontend* Get(content::BrowserContext* context);
32 static StorageFrontend* CreateForTesting(
37 virtual ~StorageFrontend();
62 static BrowserContextKeyedAPIFactory<StorageFrontend>* GetFactoryInstance();
68 friend class BrowserContextKeyedAPIFactory<StorageFrontend>;
73 explicit StorageFrontend(content::BrowserContext* context);
76 StorageFrontend(const scoped_refptr<SettingsStorageFactory>& storage_factory,
94 DISALLOW_COPY_AND_ASSIGN(StorageFrontend);

Completed in 310 milliseconds