Re-enable an UNREACHABLE in JSObject::GetHeaderSize()

Review URL: https://codereview.chromium.org/1091553002

Cr-Commit-Position: refs/heads/master@{#27908}
This commit is contained in:
jkummerow 2015-04-17 01:47:20 -07:00 committed by Commit bot
parent ae2057e81a
commit 14ec8077cc

View File

@ -1979,9 +1979,7 @@ int JSObject::GetHeaderSize() {
case JS_MESSAGE_OBJECT_TYPE:
return JSMessageObject::kSize;
default:
// TODO(jkummerow): Re-enable this. Blink currently hits this
// from its CustomElementConstructorBuilder.
// UNREACHABLE();
UNREACHABLE();
return 0;
}
}