Index: Source/WebCore/bindings/v8/custom/V8ConsoleCustom.cpp |
diff --git a/Source/WebCore/bindings/v8/custom/V8ConsoleCustom.cpp b/Source/WebCore/bindings/v8/custom/V8ConsoleCustom.cpp |
index acef0e0d5c4e52b9c7ab071f8ed0ce92dcf1f61a..20f156cb467d476a90d726cbaf70f58eb75bc24f 100644 |
--- a/Source/WebCore/bindings/v8/custom/V8ConsoleCustom.cpp |
+++ b/Source/WebCore/bindings/v8/custom/V8ConsoleCustom.cpp |
@@ -57,7 +57,6 @@ v8::Handle<v8::Value> V8Console::assertMethodCustom(const v8::Arguments& args) |
return v8Undefined(); |
} |
-#if ENABLE(JAVASCRIPT_DEBUGGER) |
v8::Handle<v8::Value> V8Console::profileMethodCustom(const v8::Arguments& args) |
{ |
Console* imp = V8Console::toNative(args.Holder()); |
@@ -73,6 +72,5 @@ v8::Handle<v8::Value> V8Console::profileEndMethodCustom(const v8::Arguments& arg |
imp->profileEnd(title, ScriptState::current()); |
return v8Undefined(); |
} |
-#endif |
} // namespace WebCore |