Index: third_party/WebKit/Source/modules/webdatabase/InspectorDatabaseAgent.cpp |
diff --git a/third_party/WebKit/Source/modules/webdatabase/InspectorDatabaseAgent.cpp b/third_party/WebKit/Source/modules/webdatabase/InspectorDatabaseAgent.cpp |
index bb13e652112a8f9870bff8196a15524c562001f6..92a7d17926246db8f682c68b6118f9c629279df9 100644 |
--- a/third_party/WebKit/Source/modules/webdatabase/InspectorDatabaseAgent.cpp |
+++ b/third_party/WebKit/Source/modules/webdatabase/InspectorDatabaseAgent.cpp |
@@ -252,7 +252,8 @@ void InspectorDatabaseAgent::DidOpenDatabase(blink::Database* database, |
InspectorDatabaseResource::Create(database, domain, name, version); |
resources_.Set(resource->Id(), resource); |
// Resources are only bound while visible. |
- ASSERT(enabled_ && GetFrontend()); |
+ DCHECK(enabled_); |
+ DCHECK(GetFrontend()); |
resource->Bind(GetFrontend()); |
} |