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

Unified Diff: Source/core/inspector/InspectorDebuggerAgent.h

Issue 16143005: monitor console command implemented. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 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/core/inspector/InjectedScriptSource.js ('k') | Source/core/inspector/InspectorDebuggerAgent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorDebuggerAgent.h
diff --git a/Source/core/inspector/InspectorDebuggerAgent.h b/Source/core/inspector/InspectorDebuggerAgent.h
index 9b8bf3702bb2148442e035ec75ecbc31a58eda90..cc5664df83365c7739b38d9af6e13bf5836905a5 100644
--- a/Source/core/inspector/InspectorDebuggerAgent.h
+++ b/Source/core/inspector/InspectorDebuggerAgent.h
@@ -66,7 +66,8 @@ class InspectorDebuggerAgent : public InspectorBaseAgent<InspectorDebuggerAgent>
public:
enum BreakpointSource {
UserBreakpointSource,
- DebugCommandBreakpointSource
+ DebugCommandBreakpointSource,
+ MonitorCommandBreakpointSource
};
static const char* backtraceObjectGroup;
@@ -141,7 +142,7 @@ public:
virtual void reportMemoryUsage(MemoryObjectInfo*) const;
- void setBreakpoint(const String& scriptId, int lineNumber, int columnNumber, BreakpointSource);
+ void setBreakpoint(const String& scriptId, int lineNumber, int columnNumber, BreakpointSource, const String& condition = String());
void removeBreakpoint(const String& scriptId, int lineNumber, int columnNumber, BreakpointSource);
protected:
« no previous file with comments | « Source/core/inspector/InjectedScriptSource.js ('k') | Source/core/inspector/InspectorDebuggerAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698