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

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

Issue 1161323002: DevTools: implement JavaScriptCallFrame binding based on v8 API (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Moved V8JavaScriptCallFrame to bindings/core/v8/inspector/ Created 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/core.gypi ('k') | 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 class AsyncCallChain; 53 class AsyncCallChain;
54 class AsyncCallStack; 54 class AsyncCallStack;
55 class ConsoleMessage; 55 class ConsoleMessage;
56 class DevToolsFunctionInfo; 56 class DevToolsFunctionInfo;
57 class InjectedScript; 57 class InjectedScript;
58 class InjectedScriptManager; 58 class InjectedScriptManager;
59 class JavaScriptCallFrame; 59 class JavaScriptCallFrame;
60 class JSONObject; 60 class JSONObject;
61 class ScriptAsyncCallStack; 61 class ScriptAsyncCallStack;
62 class ScriptRegexp; 62 class ScriptRegexp;
63 class ScriptSourceCode;
64 class V8AsyncCallTracker; 63 class V8AsyncCallTracker;
65 class V8Debugger; 64 class V8Debugger;
66 65
67 typedef String ErrorString; 66 typedef String ErrorString;
68 67
69 class CORE_EXPORT InspectorDebuggerAgent 68 class CORE_EXPORT InspectorDebuggerAgent
70 : public InspectorBaseAgent<InspectorDebuggerAgent, InspectorFrontend::Debug ger> 69 : public InspectorBaseAgent<InspectorDebuggerAgent, InspectorFrontend::Debug ger>
71 , public ScriptDebugListener 70 , public ScriptDebugListener
72 , public InspectorBackendDispatcher::DebuggerCommandHandler 71 , public InspectorBackendDispatcher::DebuggerCommandHandler
73 , public PromiseTracker::Listener { 72 , public PromiseTracker::Listener {
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
308 bool m_pendingTraceAsyncOperationCompleted; 307 bool m_pendingTraceAsyncOperationCompleted;
309 bool m_startingStepIntoAsync; 308 bool m_startingStepIntoAsync;
310 WillBeHeapVector<RawPtrWillBeMember<AsyncCallTrackingListener>> m_asyncCallT rackingListeners; 309 WillBeHeapVector<RawPtrWillBeMember<AsyncCallTrackingListener>> m_asyncCallT rackingListeners;
311 V8GlobalValueMap<String, v8::Script, v8::kNotWeak> m_compiledScripts; 310 V8GlobalValueMap<String, v8::Script, v8::kNotWeak> m_compiledScripts;
312 }; 311 };
313 312
314 } // namespace blink 313 } // namespace blink
315 314
316 315
317 #endif // InspectorDebuggerAgent_h 316 #endif // InspectorDebuggerAgent_h
OLDNEW
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/inspector/InspectorDebuggerAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698