Title: [138769] trunk/Source/WebCore
Revision
138769
Author
ad...@chromium.org
Date
2013-01-03 17:18:03 -0800 (Thu, 03 Jan 2013)

Log Message

Unreviewed rebaseline of binding tests after r138754

* bindings/scripts/CodeGeneratorV8.pm:
(GenerateCallbackHeader): Remove unnecessary whitespace
* bindings/scripts/test/JS/JSTestCallback.h:
(WebCore::JSTestCallback::scriptExecutionContext):
(JSTestCallback):
* bindings/scripts/test/V8/V8TestCallback.h:
(WebCore::V8TestCallback::scriptExecutionContext):
(V8TestCallback):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (138768 => 138769)


--- trunk/Source/WebCore/ChangeLog	2013-01-04 01:06:19 UTC (rev 138768)
+++ trunk/Source/WebCore/ChangeLog	2013-01-04 01:18:03 UTC (rev 138769)
@@ -1,3 +1,16 @@
+2013-01-03  Adam Klein  <ad...@chromium.org>
+
+        Unreviewed rebaseline of binding tests after r138754
+
+        * bindings/scripts/CodeGeneratorV8.pm:
+        (GenerateCallbackHeader): Remove unnecessary whitespace
+        * bindings/scripts/test/JS/JSTestCallback.h:
+        (WebCore::JSTestCallback::scriptExecutionContext):
+        (JSTestCallback):
+        * bindings/scripts/test/V8/V8TestCallback.h:
+        (WebCore::V8TestCallback::scriptExecutionContext):
+        (V8TestCallback):
+
 2013-01-03  Antoine Quint  <grao...@apple.com>
 
         onload callback for <track> element attached to <video> does not fire

Modified: trunk/Source/WebCore/bindings/scripts/CodeGeneratorV8.pm (138768 => 138769)


--- trunk/Source/WebCore/bindings/scripts/CodeGeneratorV8.pm	2013-01-04 01:06:19 UTC (rev 138768)
+++ trunk/Source/WebCore/bindings/scripts/CodeGeneratorV8.pm	2013-01-04 01:18:03 UTC (rev 138769)
@@ -3286,7 +3286,7 @@
     }
 
     push(@headerContent, <<END);
-  
+
     virtual ScriptExecutionContext* scriptExecutionContext() const { return ContextDestructionObserver::scriptExecutionContext(); }
 
 private:

Modified: trunk/Source/WebCore/bindings/scripts/test/JS/JSTestCallback.h (138768 => 138769)


--- trunk/Source/WebCore/bindings/scripts/test/JS/JSTestCallback.h	2013-01-04 01:06:19 UTC (rev 138768)
+++ trunk/Source/WebCore/bindings/scripts/test/JS/JSTestCallback.h	2013-01-04 01:18:03 UTC (rev 138769)
@@ -37,6 +37,8 @@
         return adoptRef(new JSTestCallback(callback, globalObject));
     }
 
+    virtual ScriptExecutionContext* scriptExecutionContext() const { return ContextDestructionObserver::scriptExecutionContext(); }
+
     virtual ~JSTestCallback();
 
     // Functions

Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestCallback.h (138768 => 138769)


--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestCallback.h	2013-01-04 01:06:19 UTC (rev 138768)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestCallback.h	2013-01-04 01:18:03 UTC (rev 138769)
@@ -55,6 +55,8 @@
     virtual bool callbackWithBoolean(bool boolParam);
     virtual bool callbackRequiresThisToPass(Class8* class8Param, ThisClass* thisClassParam);
 
+    virtual ScriptExecutionContext* scriptExecutionContext() const { return ContextDestructionObserver::scriptExecutionContext(); }
+
 private:
     V8TestCallback(v8::Handle<v8::Object>, ScriptExecutionContext*, v8::Handle<v8::Object>);
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to