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

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

Issue 293963003: Remove ScriptObject (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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 | 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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 void didHandleEvent(); 157 void didHandleEvent();
158 void willLoadXHR(XMLHttpRequest*, ThreadableLoaderClient*, const AtomicStrin g& method, const KURL&, bool async, FormData* body, const HTTPHeaderMap& headers , bool includeCrendentials); 158 void willLoadXHR(XMLHttpRequest*, ThreadableLoaderClient*, const AtomicStrin g& method, const KURL&, bool async, FormData* body, const HTTPHeaderMap& headers , bool includeCrendentials);
159 void didEnqueueMutationRecord(ExecutionContext*, MutationObserver*); 159 void didEnqueueMutationRecord(ExecutionContext*, MutationObserver*);
160 void didClearAllMutationRecords(ExecutionContext*, MutationObserver*); 160 void didClearAllMutationRecords(ExecutionContext*, MutationObserver*);
161 void willDeliverMutationRecords(ExecutionContext*, MutationObserver*); 161 void willDeliverMutationRecords(ExecutionContext*, MutationObserver*);
162 void didDeliverMutationRecords(); 162 void didDeliverMutationRecords();
163 void didPostPromiseTask(ExecutionContext*, ExecutionContextTask*, bool isRes olved); 163 void didPostPromiseTask(ExecutionContext*, ExecutionContextTask*, bool isRes olved);
164 void willPerformPromiseTask(ExecutionContext*, ExecutionContextTask*); 164 void willPerformPromiseTask(ExecutionContext*, ExecutionContextTask*);
165 void didPerformPromiseTask(); 165 void didPerformPromiseTask();
166 bool isPromiseTrackerEnabled(); 166 bool isPromiseTrackerEnabled();
167 void didCreatePromise(const ScriptObject& promise); 167 void didCreatePromise(const ScriptValue& promise);
168 void didUpdatePromiseParent(const ScriptObject& promise, const ScriptObject& parentPromise); 168 void didUpdatePromiseParent(const ScriptValue& promise, const ScriptValue& p arentPromise);
169 void didUpdatePromiseState(const ScriptObject& promise, V8PromiseCustom::Pro miseState, const ScriptValue& result); 169 void didUpdatePromiseState(const ScriptValue& promise, V8PromiseCustom::Prom iseState, const ScriptValue& result);
170 bool canBreakProgram(); 170 bool canBreakProgram();
171 void breakProgram(InspectorFrontend::Debugger::Reason::Enum breakReason, Pas sRefPtr<JSONObject> data); 171 void breakProgram(InspectorFrontend::Debugger::Reason::Enum breakReason, Pas sRefPtr<JSONObject> data);
172 void scriptExecutionBlockedByCSP(const String& directiveText); 172 void scriptExecutionBlockedByCSP(const String& directiveText);
173 173
174 class Listener { 174 class Listener {
175 public: 175 public:
176 virtual ~Listener() { } 176 virtual ~Listener() { }
177 virtual void debuggerWasEnabled() = 0; 177 virtual void debuggerWasEnabled() = 0;
178 virtual void debuggerWasDisabled() = 0; 178 virtual void debuggerWasDisabled() = 0;
179 virtual void stepInto() = 0; 179 virtual void stepInto() = 0;
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 bool m_skipAllPauses; 254 bool m_skipAllPauses;
255 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; 255 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp;
256 AsyncCallStackTracker m_asyncCallStackTracker; 256 AsyncCallStackTracker m_asyncCallStackTracker;
257 PromiseTracker m_promiseTracker; 257 PromiseTracker m_promiseTracker;
258 }; 258 };
259 259
260 } // namespace WebCore 260 } // namespace WebCore
261 261
262 262
263 #endif // !defined(InspectorDebuggerAgent_h) 263 #endif // !defined(InspectorDebuggerAgent_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698