Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(240)

Unified Diff: Source/WebCore/bindings/v8/custom/V8ConsoleCustom.cpp

Issue 13646003: DevTools: Remove ENABLE(INSPECTOR) and ENABLE(JAVASCRIPT_DEBUGGER) from the code. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: comments addressed Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698