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

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

Issue 311263014: IndexedDB: Fix trivial cpplint.py errors (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased 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_factory_unittest.cc
diff --git a/content/browser/indexed_db/indexed_db_factory_unittest.cc b/content/browser/indexed_db/indexed_db_factory_unittest.cc
index ba7de61b9a1df61f22ab0dfbe3ccb77035a310ce..975f9bcbcd355ea4d57a6a51c66127e75ca6d022 100644
--- a/content/browser/indexed_db/indexed_db_factory_unittest.cc
+++ b/content/browser/indexed_db/indexed_db_factory_unittest.cc
@@ -28,7 +28,8 @@ namespace {
class MockIDBFactory : public IndexedDBFactory {
public:
- MockIDBFactory(IndexedDBContextImpl* context) : IndexedDBFactory(context) {}
+ explicit MockIDBFactory(IndexedDBContextImpl* context)
+ : IndexedDBFactory(context) {}
scoped_refptr<IndexedDBBackingStore> TestOpenBackingStore(
const GURL& origin,
const base::FilePath& data_directory) {
@@ -198,7 +199,8 @@ TEST_F(IndexedDBFactoryTest, RejectLongOrigins) {
class DiskFullFactory : public IndexedDBFactory {
public:
- DiskFullFactory(IndexedDBContextImpl* context) : IndexedDBFactory(context) {}
+ explicit DiskFullFactory(IndexedDBContextImpl* context)
+ : IndexedDBFactory(context) {}
private:
virtual ~DiskFullFactory() {}
« no previous file with comments | « content/browser/indexed_db/indexed_db_factory.cc ('k') | content/browser/indexed_db/indexed_db_fake_backing_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698