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

Side by Side Diff: third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.h

Issue 1891893002: [DevTools] Remove setPauseOnNextStatement from V8RuntimeAgentImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move-last-result-to-injected-script
Patch Set: Created 4 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 unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2010, Google Inc. All rights reserved. 2 * Copyright (c) 2010, Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 bool breakpointsActivated() const { return m_breakpointsActivated; } 64 bool breakpointsActivated() const { return m_breakpointsActivated; }
65 65
66 enum PauseOnExceptionsState { 66 enum PauseOnExceptionsState {
67 DontPauseOnExceptions, 67 DontPauseOnExceptions,
68 PauseOnAllExceptions, 68 PauseOnAllExceptions,
69 PauseOnUncaughtExceptions 69 PauseOnUncaughtExceptions
70 }; 70 };
71 PauseOnExceptionsState getPauseOnExceptionsState(); 71 PauseOnExceptionsState getPauseOnExceptionsState();
72 void setPauseOnExceptionsState(PauseOnExceptionsState); 72 void setPauseOnExceptionsState(PauseOnExceptionsState);
73 void setPauseOnNextStatement(bool); 73 void setPauseOnNextStatement(bool);
74 bool pausingOnNextStatement();
75 bool canBreakProgram(); 74 bool canBreakProgram();
76 void breakProgram(); 75 void breakProgram();
77 void continueProgram(); 76 void continueProgram();
78 void stepIntoStatement(); 77 void stepIntoStatement();
79 void stepOverStatement(); 78 void stepOverStatement();
80 void stepOutOfFunction(); 79 void stepOutOfFunction();
81 void clearStepping(); 80 void clearStepping();
82 81
83 bool setScriptSource(const String16& sourceID, const String16& newContent, b ool preview, ErrorString*, Maybe<protocol::Debugger::SetScriptSourceError>*, Jav aScriptCallFrames* newCallFrames, Maybe<bool>* stackChanged); 82 bool setScriptSource(const String16& sourceID, const String16& newContent, b ool preview, ErrorString*, Maybe<protocol::Debugger::SetScriptSourceError>*, Jav aScriptCallFrames* newCallFrames, Maybe<bool>* stackChanged);
84 JavaScriptCallFrames currentCallFrames(int limit = 0); 83 JavaScriptCallFrames currentCallFrames(int limit = 0);
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 v8::Local<v8::Object> m_executionState; 156 v8::Local<v8::Object> m_executionState;
158 v8::Local<v8::Context> m_pausedContext; 157 v8::Local<v8::Context> m_pausedContext;
159 bool m_runningNestedMessageLoop; 158 bool m_runningNestedMessageLoop;
160 v8::Global<v8::Context> m_regexContext; 159 v8::Global<v8::Context> m_regexContext;
161 }; 160 };
162 161
163 } // namespace blink 162 } // namespace blink
164 163
165 164
166 #endif // V8DebuggerImpl_h 165 #endif // V8DebuggerImpl_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698