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

Unified Diff: Source/WebCore/inspector/InspectorConsoleInstrumentation.h

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
« no previous file with comments | « Source/WebCore/inspector/InspectorConsoleAgent.cpp ('k') | Source/WebCore/inspector/InspectorController.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/inspector/InspectorConsoleInstrumentation.h
diff --git a/Source/WebCore/inspector/InspectorConsoleInstrumentation.h b/Source/WebCore/inspector/InspectorConsoleInstrumentation.h
index 9a65de242439dcd7a9b6e1e96ddcc7778dc9d6d0..5b218915c47eaf642c2d35ac679c21fff598b094 100644
--- a/Source/WebCore/inspector/InspectorConsoleInstrumentation.h
+++ b/Source/WebCore/inspector/InspectorConsoleInstrumentation.h
@@ -42,187 +42,86 @@ namespace WebCore {
inline void InspectorInstrumentation::addMessageToConsole(Page* page, MessageSource source, MessageType type, MessageLevel level, const String& message, PassRefPtr<ScriptCallStack> callStack, unsigned long requestIdentifier)
{
-#if ENABLE(INSPECTOR)
if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForPage(page))
addMessageToConsoleImpl(instrumentingAgents, source, type, level, message, callStack, requestIdentifier);
-#else
- UNUSED_PARAM(page);
- UNUSED_PARAM(source);
- UNUSED_PARAM(type);
- UNUSED_PARAM(level);
- UNUSED_PARAM(message);
- UNUSED_PARAM(callStack);
- UNUSED_PARAM(requestIdentifier);
-#endif
}
inline void InspectorInstrumentation::addMessageToConsole(Page* page, MessageSource source, MessageType type, MessageLevel level, const String& message, ScriptState* state, PassRefPtr<ScriptArguments> arguments, unsigned long requestIdentifier)
{
-#if ENABLE(INSPECTOR)
if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForPage(page))
addMessageToConsoleImpl(instrumentingAgents, source, type, level, message, state, arguments, requestIdentifier);
-#else
- UNUSED_PARAM(page);
- UNUSED_PARAM(source);
- UNUSED_PARAM(type);
- UNUSED_PARAM(level);
- UNUSED_PARAM(message);
- UNUSED_PARAM(state);
- UNUSED_PARAM(arguments);
- UNUSED_PARAM(requestIdentifier);
-#endif
}
inline void InspectorInstrumentation::addMessageToConsole(Page* page, MessageSource source, MessageType type, MessageLevel level, const String& message, const String& scriptId, unsigned lineNumber, ScriptState* state, unsigned long requestIdentifier)
{
-#if ENABLE(INSPECTOR)
if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForPage(page))
addMessageToConsoleImpl(instrumentingAgents, source, type, level, message, scriptId, lineNumber, state, requestIdentifier);
-#else
- UNUSED_PARAM(page);
- UNUSED_PARAM(source);
- UNUSED_PARAM(type);
- UNUSED_PARAM(level);
- UNUSED_PARAM(message);
- UNUSED_PARAM(scriptId);
- UNUSED_PARAM(lineNumber);
- UNUSED_PARAM(state);
- UNUSED_PARAM(requestIdentifier);
-#endif
}
#if ENABLE(WORKERS)
inline void InspectorInstrumentation::addMessageToConsole(WorkerContext* workerContext, MessageSource source, MessageType type, MessageLevel level, const String& message, PassRefPtr<ScriptCallStack> callStack, unsigned long requestIdentifier)
{
-#if ENABLE(INSPECTOR)
if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForWorkerContext(workerContext))
addMessageToConsoleImpl(instrumentingAgents, source, type, level, message, callStack, requestIdentifier);
-#else
- UNUSED_PARAM(workerContext);
- UNUSED_PARAM(source);
- UNUSED_PARAM(type);
- UNUSED_PARAM(level);
- UNUSED_PARAM(message);
- UNUSED_PARAM(callStack);
- UNUSED_PARAM(requestIdentifier);
-#endif
}
inline void InspectorInstrumentation::addMessageToConsole(WorkerContext* workerContext, MessageSource source, MessageType type, MessageLevel level, const String& message, const String& scriptId, unsigned lineNumber, ScriptState* state, unsigned long requestIdentifier)
{
-#if ENABLE(INSPECTOR)
if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForWorkerContext(workerContext))
addMessageToConsoleImpl(instrumentingAgents, source, type, level, message, scriptId, lineNumber, state, requestIdentifier);
-#else
- UNUSED_PARAM(workerContext);
- UNUSED_PARAM(source);
- UNUSED_PARAM(type);
- UNUSED_PARAM(level);
- UNUSED_PARAM(message);
- UNUSED_PARAM(scriptId);
- UNUSED_PARAM(lineNumber);
- UNUSED_PARAM(state);
- UNUSED_PARAM(requestIdentifier);
-#endif
}
#endif
inline void InspectorInstrumentation::consoleCount(Page* page, ScriptState* state, PassRefPtr<ScriptArguments> arguments)
{
-#if ENABLE(INSPECTOR)
if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForPage(page))
consoleCountImpl(instrumentingAgents, state, arguments);
-#else
- UNUSED_PARAM(page);
- UNUSED_PARAM(state);
- UNUSED_PARAM(arguments);
-#endif
}
inline void InspectorInstrumentation::startConsoleTiming(Frame* frame, const String& title)
{
-#if ENABLE(INSPECTOR)
if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForFrame(frame))
startConsoleTimingImpl(instrumentingAgents, frame, title);
-#else
- UNUSED_PARAM(frame);
- UNUSED_PARAM(title);
-#endif
}
inline void InspectorInstrumentation::stopConsoleTiming(Frame* frame, const String& title, PassRefPtr<ScriptCallStack> stack)
{
-#if ENABLE(INSPECTOR)
if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForFrame(frame))
stopConsoleTimingImpl(instrumentingAgents, frame, title, stack);
-#else
- UNUSED_PARAM(frame);
- UNUSED_PARAM(title);
- UNUSED_PARAM(stack);
-#endif
}
inline void InspectorInstrumentation::consoleTimeStamp(Frame* frame, PassRefPtr<ScriptArguments> arguments)
{
-#if ENABLE(INSPECTOR)
FAST_RETURN_IF_NO_FRONTENDS(void());
if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForFrame(frame))
consoleTimeStampImpl(instrumentingAgents, frame, arguments);
-#else
- UNUSED_PARAM(frame);
- UNUSED_PARAM(arguments);
-#endif
}
-#if ENABLE(JAVASCRIPT_DEBUGGER)
inline void InspectorInstrumentation::addStartProfilingMessageToConsole(Page* page, const String& title, unsigned lineNumber, const String& sourceURL)
{
-#if ENABLE(INSPECTOR)
if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForPage(page))
addStartProfilingMessageToConsoleImpl(instrumentingAgents, title, lineNumber, sourceURL);
-#else
- UNUSED_PARAM(page);
- UNUSED_PARAM(title);
- UNUSED_PARAM(lineNumber);
- UNUSED_PARAM(sourceURL);
-#endif
}
inline void InspectorInstrumentation::addProfile(Page* page, RefPtr<ScriptProfile> profile, PassRefPtr<ScriptCallStack> callStack)
{
-#if ENABLE(INSPECTOR)
if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForPage(page))
addProfileImpl(instrumentingAgents, profile, callStack);
-#else
- UNUSED_PARAM(page);
- UNUSED_PARAM(profile);
- UNUSED_PARAM(callStack);
-#endif
}
inline bool InspectorInstrumentation::profilerEnabled(Page* page)
{
-#if ENABLE(INSPECTOR)
if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForPage(page))
return profilerEnabledImpl(instrumentingAgents);
-#else
- UNUSED_PARAM(page);
-#endif
return false;
}
inline String InspectorInstrumentation::getCurrentUserInitiatedProfileName(Page* page, bool incrementProfileNumber)
{
-#if ENABLE(INSPECTOR)
if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForPage(page))
return InspectorInstrumentation::getCurrentUserInitiatedProfileNameImpl(instrumentingAgents, incrementProfileNumber);
-#else
- UNUSED_PARAM(page);
- UNUSED_PARAM(incrementProfileNumber);
-#endif
return "";
}
-#endif
} // namespace WebCore
« no previous file with comments | « Source/WebCore/inspector/InspectorConsoleAgent.cpp ('k') | Source/WebCore/inspector/InspectorController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698