Skip to content

Instantly share code, notes, and snippets.

@kkristof
Created March 22, 2012 15:50
Show Gist options
  • Save kkristof/2159148 to your computer and use it in GitHub Desktop.
Save kkristof/2159148 to your computer and use it in GitHub Desktop.
minimal build fix
diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog
index fee47ed..b7cca20 100644
--- a/Source/WebCore/ChangeLog
+++ b/Source/WebCore/ChangeLog
@@ -1,3 +1,11 @@
+2012-03-22 Kristóf Kosztyó <kkristof@inf.u-szeged.hu>
+
+ [Qt] Fix Qt minimal build after r111692
+
+ Reviewed by NOBODY (OOPS!).
+
+ * bindings/js/JSScriptProfileNodeCustom.cpp:
+
2012-03-22 Dana Jansens <danakj@chromium.org>
[chromium] Early out in a new prepareToDraw() step if checkerboarding an accelerated animation in order to skip the frame
diff --git a/Source/WebCore/bindings/js/JSScriptProfileNodeCustom.cpp b/Source/WebCore/bindings/js/JSScriptProfileNodeCustom.cpp
index c0893aa..2e4afa0 100644
--- a/Source/WebCore/bindings/js/JSScriptProfileNodeCustom.cpp
+++ b/Source/WebCore/bindings/js/JSScriptProfileNodeCustom.cpp
@@ -26,20 +26,20 @@
#include "config.h"
+#if ENABLE(JAVASCRIPT_DEBUGGER)
+
#include "JSScriptProfileNode.h"
using namespace JSC;
namespace WebCore {
-#if ENABLE(JAVASCRIPT_DEBUGGER)
-
JSValue JSScriptProfileNode::callUID(ExecState*) const
{
JSValue result = jsNumber(impl()->callIdentifier().hash());
return result;
}
-#endif
-
} // namespace WebCore
+
+#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment