Title: [96357] trunk/Source/WebCore
Revision
96357
Author
[email protected]
Date
2011-09-29 14:07:11 -0700 (Thu, 29 Sep 2011)

Log Message

Fixenate the build.

* bindings/v8/V8DOMWindowShell.cpp:
(WebCore::V8DOMWindowShell::namedItemAdded):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (96356 => 96357)


--- trunk/Source/WebCore/ChangeLog	2011-09-29 20:51:19 UTC (rev 96356)
+++ trunk/Source/WebCore/ChangeLog	2011-09-29 21:07:11 UTC (rev 96357)
@@ -1,3 +1,10 @@
+2011-09-29  Adam Barth  <[email protected]>
+
+        Fixenate the build.
+
+        * bindings/v8/V8DOMWindowShell.cpp:
+        (WebCore::V8DOMWindowShell::namedItemAdded):
+
 2011-09-29  Ryosuke Niwa  <[email protected]>
 
         Remove direct reads to m_firstNodeInserted and m_lastLeafInserted in ReplaceSelectionCommand

Modified: trunk/Source/WebCore/bindings/v8/V8DOMWindowShell.cpp (96356 => 96357)


--- trunk/Source/WebCore/bindings/v8/V8DOMWindowShell.cpp	2011-09-29 20:51:19 UTC (rev 96356)
+++ trunk/Source/WebCore/bindings/v8/V8DOMWindowShell.cpp	2011-09-29 21:07:11 UTC (rev 96357)
@@ -593,9 +593,9 @@
         if (!m_frame->script()->canExecuteScripts(NotAboutToExecuteScript))
             PlatformSupport::histogramEnumeration("V8Bindings.nullContextState", 2, 3);
 
-         if (s_contextFailureReason >= 0 && s_contextFailureReason <= 7);
+        if (s_contextFailureReason >= 0 && s_contextFailureReason <= 7)
             PlatformSupport::histogramEnumeration("V8Bindings.nullContextReason", s_contextFailureReason, 8);
-         s_contextFailureReason = -1;
+        s_contextFailureReason = -1;
 #endif
         return;
     }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to