From 08fcdfc9d189e4b16e10e9de62624651b7d82f29 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Thu, 8 Dec 2011 13:15:55 +0000 Subject: [PATCH] Mac: Fix compile error due to revision 409 changes. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@411 5089003a-bbd8-11dd-ad1f-f1f9622dbc98 --- libcef/v8_impl.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcef/v8_impl.cc b/libcef/v8_impl.cc index 6d97094d8..fc7ec8280 100644 --- a/libcef/v8_impl.cc +++ b/libcef/v8_impl.cc @@ -930,7 +930,7 @@ CefRefPtr CefV8ValueImpl::GetValue(int index) } if (index < 0) { NOTREACHED() << "invalid input parameter"; - return false; + return NULL; } v8::HandleScope handle_scope;