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

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

Issue 766103003: [Inspector] Deprecate usage of v8::Handle with v8::Local as replacement. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years 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 | Source/core/inspector/InspectorDebuggerAgent.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 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 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 206
207 PassRefPtr<TypeBuilder::Array<TypeBuilder::Debugger::CallFrame> > currentCal lFrames(); 207 PassRefPtr<TypeBuilder::Array<TypeBuilder::Debugger::CallFrame> > currentCal lFrames();
208 PassRefPtr<TypeBuilder::Debugger::StackTrace> currentAsyncStackTrace(); 208 PassRefPtr<TypeBuilder::Debugger::StackTrace> currentAsyncStackTrace();
209 209
210 void changeJavaScriptRecursionLevel(int step); 210 void changeJavaScriptRecursionLevel(int step);
211 211
212 void didParseSource(const String& scriptId, const Script&, CompileResult) fi nal; 212 void didParseSource(const String& scriptId, const Script&, CompileResult) fi nal;
213 bool v8AsyncTaskEventsEnabled() const final; 213 bool v8AsyncTaskEventsEnabled() const final;
214 void didReceiveV8AsyncTaskEvent(ExecutionContext*, const String& eventType, const String& eventName, int id) final; 214 void didReceiveV8AsyncTaskEvent(ExecutionContext*, const String& eventType, const String& eventName, int id) final;
215 bool v8PromiseEventsEnabled() const final; 215 bool v8PromiseEventsEnabled() const final;
216 void didReceiveV8PromiseEvent(ScriptState*, v8::Handle<v8::Object> promise, v8::Handle<v8::Value> parentPromise, int status) final; 216 void didReceiveV8PromiseEvent(ScriptState*, v8::Local<v8::Object> promise, v 8::Local<v8::Value> parentPromise, int status) final;
217 217
218 void setPauseOnExceptionsImpl(ErrorString*, int); 218 void setPauseOnExceptionsImpl(ErrorString*, int);
219 219
220 PassRefPtr<TypeBuilder::Debugger::Location> resolveBreakpoint(const String& breakpointId, const String& scriptId, const ScriptBreakpoint&, BreakpointSource) ; 220 PassRefPtr<TypeBuilder::Debugger::Location> resolveBreakpoint(const String& breakpointId, const String& scriptId, const ScriptBreakpoint&, BreakpointSource) ;
221 void removeBreakpoint(const String& breakpointId); 221 void removeBreakpoint(const String& breakpointId);
222 void clear(); 222 void clear();
223 void clearStepIntoAsync(); 223 void clearStepIntoAsync();
224 bool assertPaused(ErrorString*); 224 bool assertPaused(ErrorString*);
225 void clearBreakDetails(); 225 void clearBreakDetails();
226 226
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 unsigned m_cachedSkipStackGeneration; 272 unsigned m_cachedSkipStackGeneration;
273 OwnPtrWillBeMember<AsyncCallStackTracker> m_asyncCallStackTracker; 273 OwnPtrWillBeMember<AsyncCallStackTracker> m_asyncCallStackTracker;
274 OwnPtrWillBeMember<PromiseTracker> m_promiseTracker; 274 OwnPtrWillBeMember<PromiseTracker> m_promiseTracker;
275 HashSet<int> m_asyncOperationIdsForStepInto; 275 HashSet<int> m_asyncOperationIdsForStepInto;
276 }; 276 };
277 277
278 } // namespace blink 278 } // namespace blink
279 279
280 280
281 #endif // !defined(InspectorDebuggerAgent_h) 281 #endif // !defined(InspectorDebuggerAgent_h)
OLDNEW
« no previous file with comments | « no previous file | Source/core/inspector/InspectorDebuggerAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698