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

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

Issue 443943002: DevTools: Fix framework blackboxing for exceptions thrown inside V8 internal scripts. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fixed test Created 6 years, 4 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 | Annotate | Revision Log
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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 void setPauseOnExceptionsImpl(ErrorString*, int); 229 void setPauseOnExceptionsImpl(ErrorString*, int);
230 230
231 PassRefPtr<TypeBuilder::Debugger::Location> resolveBreakpoint(const String& breakpointId, const String& scriptId, const ScriptBreakpoint&, BreakpointSource) ; 231 PassRefPtr<TypeBuilder::Debugger::Location> resolveBreakpoint(const String& breakpointId, const String& scriptId, const ScriptBreakpoint&, BreakpointSource) ;
232 void removeBreakpoint(const String& breakpointId); 232 void removeBreakpoint(const String& breakpointId);
233 void clear(); 233 void clear();
234 bool assertPaused(ErrorString*); 234 bool assertPaused(ErrorString*);
235 void clearBreakDetails(); 235 void clearBreakDetails();
236 236
237 String sourceMapURLForScript(const Script&, CompileResult); 237 String sourceMapURLForScript(const Script&, CompileResult);
238 238
239 PassRefPtrWillBeRawPtr<JavaScriptCallFrame> topCallFrameSkipUnknownSources() ;
239 String scriptURL(JavaScriptCallFrame*); 240 String scriptURL(JavaScriptCallFrame*);
240 241
241 typedef HashMap<String, Script> ScriptsMap; 242 typedef HashMap<String, Script> ScriptsMap;
242 typedef HashMap<String, Vector<String> > BreakpointIdToDebugServerBreakpoint IdsMap; 243 typedef HashMap<String, Vector<String> > BreakpointIdToDebugServerBreakpoint IdsMap;
243 typedef HashMap<String, std::pair<String, BreakpointSource> > DebugServerBre akpointToBreakpointIdAndSourceMap; 244 typedef HashMap<String, std::pair<String, BreakpointSource> > DebugServerBre akpointToBreakpointIdAndSourceMap;
244 245
245 RawPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager; 246 RawPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager;
246 InspectorFrontend::Debugger* m_frontend; 247 InspectorFrontend::Debugger* m_frontend;
247 RefPtr<ScriptState> m_pausedScriptState; 248 RefPtr<ScriptState> m_pausedScriptState;
248 ScriptValue m_currentCallStack; 249 ScriptValue m_currentCallStack;
(...skipping 13 matching lines...) Expand all
262 int m_minFrameCountForSkip; 263 int m_minFrameCountForSkip;
263 bool m_skipAllPauses; 264 bool m_skipAllPauses;
264 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; 265 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp;
265 AsyncCallStackTracker m_asyncCallStackTracker; 266 AsyncCallStackTracker m_asyncCallStackTracker;
266 }; 267 };
267 268
268 } // namespace blink 269 } // namespace blink
269 270
270 271
271 #endif // !defined(InspectorDebuggerAgent_h) 272 #endif // !defined(InspectorDebuggerAgent_h)
OLDNEW
« no previous file with comments | « Source/bindings/core/v8/ScriptDebugServer.cpp ('k') | Source/core/inspector/InspectorDebuggerAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698