Index: third_party/WebKit/Source/modules/webdatabase/sqlite/SQLValue.cpp |
diff --git a/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLValue.cpp b/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLValue.cpp |
index 6dd6d710cd16a95db0cb80353ee886891966f233..3506326386a0564821662f57c0c0fdd4625c51cb 100644 |
--- a/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLValue.cpp |
+++ b/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLValue.cpp |
@@ -36,14 +36,14 @@ SQLValue::SQLValue(const SQLValue& val) |
string_(val.string_.IsolatedCopy()) {} |
String SQLValue::GetString() const { |
- ASSERT(type_ == kStringValue); |
+ DCHECK_EQ(type_, kStringValue); |
// Must return a copy since ref-shared Strings are not thread safe |
return string_.IsolatedCopy(); |
} |
double SQLValue::Number() const { |
- ASSERT(type_ == kNumberValue); |
+ DCHECK_EQ(type_, kNumberValue); |
return number_; |
} |