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

Unified Diff: content/browser/indexed_db/indexed_db_active_blob_registry_unittest.cc

Issue 312093005: IndexedDB: Sprinkle DISALLOW_COPY_AND_ASSIGN where appropriate (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Whitespace fixes 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/indexed_db/indexed_db_active_blob_registry_unittest.cc
diff --git a/content/browser/indexed_db/indexed_db_active_blob_registry_unittest.cc b/content/browser/indexed_db/indexed_db_active_blob_registry_unittest.cc
index 5c42b6a8d21f00f96027a2a2c7d9f4ba03f34222..c8f84758f8009e85299c5c78f4590ad9139aebe0 100644
--- a/content/browser/indexed_db/indexed_db_active_blob_registry_unittest.cc
+++ b/content/browser/indexed_db/indexed_db_active_blob_registry_unittest.cc
@@ -49,6 +49,8 @@ class MockIDBFactory : public IndexedDBFactory {
private:
std::set<GURL> origins_;
bool duplicate_calls_;
+
+ DISALLOW_COPY_AND_ASSIGN(MockIDBFactory);
};
class MockIDBBackingStore : public IndexedDBFakeBackingStore {
@@ -79,6 +81,8 @@ class MockIDBBackingStore : public IndexedDBFakeBackingStore {
private:
KeyPairSet unused_blobs_;
bool duplicate_calls_;
+
+ DISALLOW_COPY_AND_ASSIGN(MockIDBBackingStore);
};
// Base class for our test fixtures.

Powered by Google App Engine
This is Rietveld 408576698