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

Side by Side Diff: content/browser/indexed_db/indexed_db_factory.h

Issue 312093005: IndexedDB: Sprinkle DISALLOW_COPY_AND_ASSIGN where appropriate (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add missing private: Created 6 years, 6 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_FACTORY_H_ 5 #ifndef CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_FACTORY_H_
6 #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_FACTORY_H_ 6 #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_FACTORY_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 10
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 IndexedDBDatabaseMap database_map_; 136 IndexedDBDatabaseMap database_map_;
137 OriginDBMap origin_dbs_; 137 OriginDBMap origin_dbs_;
138 138
139 typedef std::map<GURL, scoped_refptr<IndexedDBBackingStore> > 139 typedef std::map<GURL, scoped_refptr<IndexedDBBackingStore> >
140 IndexedDBBackingStoreMap; 140 IndexedDBBackingStoreMap;
141 IndexedDBBackingStoreMap backing_store_map_; 141 IndexedDBBackingStoreMap backing_store_map_;
142 142
143 std::set<scoped_refptr<IndexedDBBackingStore> > session_only_backing_stores_; 143 std::set<scoped_refptr<IndexedDBBackingStore> > session_only_backing_stores_;
144 IndexedDBBackingStoreMap backing_stores_with_active_blobs_; 144 IndexedDBBackingStoreMap backing_stores_with_active_blobs_;
145 std::set<GURL> backends_opened_since_boot_; 145 std::set<GURL> backends_opened_since_boot_;
146
147 DISALLOW_COPY_AND_ASSIGN(IndexedDBFactory);
146 }; 148 };
147 149
148 } // namespace content 150 } // namespace content
149 151
150 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_FACTORY_H_ 152 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_FACTORY_H_
OLDNEW
« no previous file with comments | « content/browser/indexed_db/indexed_db_dispatcher_host.h ('k') | content/browser/indexed_db/indexed_db_factory_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698