| OLD | NEW |
| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 | 86 |
| 87 void init() final; | 87 void init() final; |
| 88 void setFrontend(InspectorFrontend*) final; | 88 void setFrontend(InspectorFrontend*) final; |
| 89 void clearFrontend() final; | 89 void clearFrontend() final; |
| 90 void restore() final; | 90 void restore() final; |
| 91 | 91 |
| 92 bool isPaused(); | 92 bool isPaused(); |
| 93 void addMessageToConsole(ConsoleMessage*); | 93 void addMessageToConsole(ConsoleMessage*); |
| 94 | 94 |
| 95 String preprocessEventListener(LocalFrame*, const String& source, const Stri
ng& url, const String& functionName); | 95 String preprocessEventListener(LocalFrame*, const String& source, const Stri
ng& url, const String& functionName); |
| 96 PassOwnPtr<ScriptSourceCode> preprocess(LocalFrame*, const ScriptSourceCode&
); | 96 ScriptSourceCode preprocess(LocalFrame*, const ScriptSourceCode&); |
| 97 | 97 |
| 98 // Part of the protocol. | 98 // Part of the protocol. |
| 99 void enable(ErrorString*) final; | 99 void enable(ErrorString*) final; |
| 100 void disable(ErrorString*) final; | 100 void disable(ErrorString*) final; |
| 101 void setBreakpointsActive(ErrorString*, bool active) final; | 101 void setBreakpointsActive(ErrorString*, bool active) final; |
| 102 void setSkipAllPauses(ErrorString*, bool skipped, const bool* untilReload) f
inal; | 102 void setSkipAllPauses(ErrorString*, bool skipped, const bool* untilReload) f
inal; |
| 103 | 103 |
| 104 void setBreakpointByUrl(ErrorString*, int lineNumber, const String* optional
URL, const String* optionalURLRegex, const int* optionalColumnNumber, const Stri
ng* optionalCondition, TypeBuilder::Debugger::BreakpointId*, RefPtr<TypeBuilder:
:Array<TypeBuilder::Debugger::Location> >& locations) final; | 104 void setBreakpointByUrl(ErrorString*, int lineNumber, const String* optional
URL, const String* optionalURLRegex, const int* optionalColumnNumber, const Stri
ng* optionalCondition, TypeBuilder::Debugger::BreakpointId*, RefPtr<TypeBuilder:
:Array<TypeBuilder::Debugger::Location> >& locations) final; |
| 105 void setBreakpoint(ErrorString*, const RefPtr<JSONObject>& location, const S
tring* optionalCondition, TypeBuilder::Debugger::BreakpointId*, RefPtr<TypeBuild
er::Debugger::Location>& actualLocation) final; | 105 void setBreakpoint(ErrorString*, const RefPtr<JSONObject>& location, const S
tring* optionalCondition, TypeBuilder::Debugger::BreakpointId*, RefPtr<TypeBuild
er::Debugger::Location>& actualLocation) final; |
| 106 void removeBreakpoint(ErrorString*, const String& breakpointId) final; | 106 void removeBreakpoint(ErrorString*, const String& breakpointId) final; |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 RefPtrWillBeMember<AsyncCallChain> m_currentAsyncCallChain; | 299 RefPtrWillBeMember<AsyncCallChain> m_currentAsyncCallChain; |
| 300 unsigned m_nestedAsyncCallCount; | 300 unsigned m_nestedAsyncCallCount; |
| 301 bool m_performingAsyncStepIn; | 301 bool m_performingAsyncStepIn; |
| 302 WillBeHeapVector<RawPtrWillBeMember<AsyncCallTrackingListener>> m_asyncCallT
rackingListeners; | 302 WillBeHeapVector<RawPtrWillBeMember<AsyncCallTrackingListener>> m_asyncCallT
rackingListeners; |
| 303 }; | 303 }; |
| 304 | 304 |
| 305 } // namespace blink | 305 } // namespace blink |
| 306 | 306 |
| 307 | 307 |
| 308 #endif // InspectorDebuggerAgent_h | 308 #endif // InspectorDebuggerAgent_h |
| OLD | NEW |