summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--DEPS2
-rw-r--r--webkit/port/bindings/scripts/CodeGeneratorV8.pm16
2 files changed, 9 insertions, 9 deletions
diff --git a/DEPS b/DEPS
index c3c78b0..974710e 100644
--- a/DEPS
+++ b/DEPS
@@ -19,7 +19,7 @@ deps = {
"http://googletest.googlecode.com/svn/trunk@167",
"src/third_party/WebKit":
- "/trunk/deps/third_party/WebKit@11119",
+ "/trunk/deps/third_party/WebKit@11122",
"src/third_party/icu38":
"/trunk/deps/third_party/icu38@10692",
diff --git a/webkit/port/bindings/scripts/CodeGeneratorV8.pm b/webkit/port/bindings/scripts/CodeGeneratorV8.pm
index fcaf6bd..8701a1f 100644
--- a/webkit/port/bindings/scripts/CodeGeneratorV8.pm
+++ b/webkit/port/bindings/scripts/CodeGeneratorV8.pm
@@ -372,7 +372,7 @@ sub GenerateDomainSafeFunctionGetter
my $funcName = $function->signature->name;
my $signature = "v8::Signature::New(" . $className . "::GetRawTemplate())";
- if ($function->signature->extendedAttributes->{"v8DoNotCheckSignature"}) {
+ if ($function->signature->extendedAttributes->{"V8DoNotCheckSignature"}) {
$signature = "v8::Local<v8::Signature>()";
}
@@ -511,7 +511,7 @@ END
END
}
- } elsif ($attrExt->{"v8OnProto"} || $attrExt->{"v8DisallowShadowing"}) {
+ } elsif ($attrExt->{"v8OnProto"} || $attrExt->{"V8DisallowShadowing"}) {
# perform lookup first
push(@implContentDecls, <<END);
v8::Handle<v8::Object> holder = V8Proxy::LookupDOMWrapper(V8ClassIndex::$classIndex, info.This());
@@ -901,7 +901,7 @@ sub GenerateBatchedAttributeData
$accessControl .= "|v8::ALL_CAN_WRITE";
}
}
- if ($attrExt->{"v8DisallowShadowing"}) {
+ if ($attrExt->{"V8DisallowShadowing"}) {
$accessControl .= "|v8::PROHIBITS_OVERWRITING";
}
$accessControl = "static_cast<v8::AccessControl>(" . $accessControl . ")";
@@ -928,7 +928,7 @@ sub GenerateBatchedAttributeData
if ($attrExt->{"DontEnum"}) {
$propAttr .= "|v8::DontEnum";
}
- if ($attrExt->{"v8DisallowShadowing"}) {
+ if ($attrExt->{"V8DisallowShadowing"}) {
$propAttr .= "|v8::DontDelete";
}
@@ -1146,7 +1146,7 @@ sub GenerateImplementation
my @normal;
if ($interfaceName eq "DOMWindow") {
foreach my $attribute (@$attributes) {
- if ($attribute->signature->extendedAttributes->{"v8DisallowShadowing"}) {
+ if ($attribute->signature->extendedAttributes->{"V8DisallowShadowing"}) {
push(@disallows_shadowing, $attribute);
} else {
push(@normal, $attribute);
@@ -1237,14 +1237,14 @@ END
if ($attrExt->{"DontEnum"}) {
$property_attributes .= "|v8::DontEnum";
}
- if ($attrExt->{"ReadOnly"}) {
+ if ($attrExt->{"V8ReadOnly"}) {
$property_attributes .= "|v8::ReadOnly";
}
my $commentInfo = "Function '$name' (ExtAttr: '" . join(' ', keys(%{$attrExt})) . "')";
my $template = "proto";
- if ($attrExt->{"v8OnInstance"}) {
+ if ($attrExt->{"V8OnInstance"}) {
$template = "instance";
}
@@ -1280,7 +1280,7 @@ END
}
my $signature = "default_signature";
- if ($attrExt->{"v8DoNotCheckSignature"}){
+ if ($attrExt->{"V8DoNotCheckSignature"}){
$signature = "v8::Local<v8::Signature>()";
}