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

Unified Diff: third_party/WebKit/Source/bindings/modules/v8/ToV8ForModules.h

Issue 2817533003: Replace ASSERT, RELEASE_ASSERT, and ASSERT_NOT_REACHED in bindings (Closed)
Patch Set: fixed dcheck build error Created 3 years, 8 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: third_party/WebKit/Source/bindings/modules/v8/ToV8ForModules.h
diff --git a/third_party/WebKit/Source/bindings/modules/v8/ToV8ForModules.h b/third_party/WebKit/Source/bindings/modules/v8/ToV8ForModules.h
index 4a22cb4d98c0eba96842ca9d5452c589d858d3af..5c5e351e231b931ddfec5c286447a2b23cac7dba 100644
--- a/third_party/WebKit/Source/bindings/modules/v8/ToV8ForModules.h
+++ b/third_party/WebKit/Source/bindings/modules/v8/ToV8ForModules.h
@@ -26,7 +26,7 @@ inline v8::Local<v8::Value> ToV8(const SQLValue& sql_value,
case SQLValue::kStringValue:
return V8String(isolate, sql_value.GetString());
}
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return v8::Local<v8::Value>();
}

Powered by Google App Engine
This is Rietveld 408576698