summaryrefslogtreecommitdiffstats
path: root/WebCore/bindings/v8
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2009-11-26 21:00:59 +0000
committerSteve Block <steveblock@google.com>2009-12-17 17:41:13 +0000
commit888fd09c906f3c3a24a303a859c4c5adc04643f4 (patch)
tree0a6dbb0ece23af488cb322c01588576c8cb676ef /WebCore/bindings/v8
parent2c3e1d0284b92aad4ad3eba7505574bba9770080 (diff)
downloadexternal_webkit-888fd09c906f3c3a24a303a859c4c5adc04643f4.zip
external_webkit-888fd09c906f3c3a24a303a859c4c5adc04643f4.tar.gz
external_webkit-888fd09c906f3c3a24a303a859c4c5adc04643f4.tar.bz2
Merge webkit.org at r51976 : V8Proxy::sourceName now returns bool.
See http://trac.webkit.org/changeset/50327 Change-Id: If8461f4f433a8addac9cd593f5f66571399a31bb
Diffstat (limited to 'WebCore/bindings/v8')
-rw-r--r--WebCore/bindings/v8/V8Proxy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/WebCore/bindings/v8/V8Proxy.cpp b/WebCore/bindings/v8/V8Proxy.cpp
index e3430b2..5da73d5 100644
--- a/WebCore/bindings/v8/V8Proxy.cpp
+++ b/WebCore/bindings/v8/V8Proxy.cpp
@@ -1374,7 +1374,7 @@ bool V8Proxy::sourceLineNumber(int& result)
bool V8Proxy::sourceName(String& result)
{
#if PLATFORM(ANDROID)
- return String();
+ return false;
#else
v8::HandleScope scope;
v8::Handle<v8::Context> v8UtilityContext = utilityContext();