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

Side by Side Diff: Source/core/inspector/InspectorDebuggerAgent.h

Issue 272613002: DevTools: implemented scriptFailedToParse protocol event (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 7 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2010-2011 Google Inc. All rights reserved. 3 * Copyright (C) 2010-2011 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 private: 209 private:
210 void cancelPauseOnNextStatement(); 210 void cancelPauseOnNextStatement();
211 void addMessageToConsole(MessageSource, MessageType); 211 void addMessageToConsole(MessageSource, MessageType);
212 212
213 bool enabled(); 213 bool enabled();
214 214
215 PassRefPtr<TypeBuilder::Array<TypeBuilder::Debugger::CallFrame> > currentCal lFrames(); 215 PassRefPtr<TypeBuilder::Array<TypeBuilder::Debugger::CallFrame> > currentCal lFrames();
216 PassRefPtr<TypeBuilder::Debugger::StackTrace> currentAsyncStackTrace(); 216 PassRefPtr<TypeBuilder::Debugger::StackTrace> currentAsyncStackTrace();
217 217
218 virtual void didParseSource(const String& scriptId, const Script&) OVERRIDE FINAL; 218 virtual void didParseSource(const String& scriptId, const Script&) OVERRIDE FINAL;
219 virtual void failedToParseSource(const String& url, const String& data, int firstLine, int errorLine, const String& errorMessage) OVERRIDE FINAL; 219 virtual void failedToParseSource(const String& scriptId, const Script&) OVER RIDE FINAL;
220 220
221 void setPauseOnExceptionsImpl(ErrorString*, int); 221 void setPauseOnExceptionsImpl(ErrorString*, int);
222 222
223 PassRefPtr<TypeBuilder::Debugger::Location> resolveBreakpoint(const String& breakpointId, const String& scriptId, const ScriptBreakpoint&, BreakpointSource) ; 223 PassRefPtr<TypeBuilder::Debugger::Location> resolveBreakpoint(const String& breakpointId, const String& scriptId, const ScriptBreakpoint&, BreakpointSource) ;
224 void removeBreakpoint(const String& breakpointId); 224 void removeBreakpoint(const String& breakpointId);
225 void clear(); 225 void clear();
226 bool assertPaused(ErrorString*); 226 bool assertPaused(ErrorString*);
227 void clearBreakDetails(); 227 void clearBreakDetails();
228 228
229 String sourceMapURLForScript(const Script&); 229 String sourceMapURLForScript(const Script&);
(...skipping 23 matching lines...) Expand all
253 bool m_skipAllPauses; 253 bool m_skipAllPauses;
254 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; 254 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp;
255 AsyncCallStackTracker m_asyncCallStackTracker; 255 AsyncCallStackTracker m_asyncCallStackTracker;
256 PromiseTracker m_promiseTracker; 256 PromiseTracker m_promiseTracker;
257 }; 257 };
258 258
259 } // namespace WebCore 259 } // namespace WebCore
260 260
261 261
262 #endif // !defined(InspectorDebuggerAgent_h) 262 #endif // !defined(InspectorDebuggerAgent_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698