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

Unified Diff: content/browser/indexed_db/indexed_db_factory.h

Issue 19117005: IndexedDB: Coding conventions and cleanup (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/indexed_db/indexed_db_factory.h
diff --git a/content/browser/indexed_db/indexed_db_factory.h b/content/browser/indexed_db/indexed_db_factory.h
index 2f4df951b3739b820ef8f9fab06e1273d5759f6e..0345b151590a6b98dff0d45d6c2fedec7e3748cd 100644
--- a/content/browser/indexed_db/indexed_db_factory.h
+++ b/content/browser/indexed_db/indexed_db_factory.h
@@ -26,9 +26,7 @@ class IndexedDBDatabase;
class CONTENT_EXPORT IndexedDBFactory
: NON_EXPORTED_BASE(public base::RefCounted<IndexedDBFactory>) {
public:
- static scoped_refptr<IndexedDBFactory> Create() {
- return make_scoped_refptr(new IndexedDBFactory());
- }
+ IndexedDBFactory();
// Notifications from weak pointers.
void RemoveIDBDatabaseBackend(const string16& unique_identifier);
@@ -52,7 +50,6 @@ class CONTENT_EXPORT IndexedDBFactory
protected:
friend class base::RefCounted<IndexedDBFactory>;
- IndexedDBFactory();
virtual ~IndexedDBFactory();
scoped_refptr<IndexedDBBackingStore> OpenBackingStore(

Powered by Google App Engine
This is Rietveld 408576698