| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 | 85 |
| 86 virtual void canSetScriptSource(ErrorString*, bool* result) OVERRIDE FINAL {
*result = true; } | 86 virtual void canSetScriptSource(ErrorString*, bool* result) OVERRIDE FINAL {
*result = true; } |
| 87 | 87 |
| 88 virtual void init() OVERRIDE FINAL; | 88 virtual void init() OVERRIDE FINAL; |
| 89 virtual void setFrontend(InspectorFrontend*) OVERRIDE FINAL; | 89 virtual void setFrontend(InspectorFrontend*) OVERRIDE FINAL; |
| 90 virtual void clearFrontend() OVERRIDE FINAL; | 90 virtual void clearFrontend() OVERRIDE FINAL; |
| 91 virtual void restore() OVERRIDE FINAL; | 91 virtual void restore() OVERRIDE FINAL; |
| 92 | 92 |
| 93 bool isPaused(); | 93 bool isPaused(); |
| 94 bool runningNestedMessageLoop(); | 94 bool runningNestedMessageLoop(); |
| 95 void addMessageToConsole(MessageSource, MessageType, MessageLevel, const Str
ing&, ScriptCallStack*, unsigned long); | 95 void addMessageToConsole(MessageSource, MessageType, MessageLevel, const Str
ing&, PassRefPtrWillBeRawPtr<ScriptCallStack>, unsigned long); |
| 96 void addMessageToConsole(MessageSource, MessageType, MessageLevel, const Str
ing&, ScriptState*, ScriptArguments*, unsigned long); | 96 void addMessageToConsole(MessageSource, MessageType, MessageLevel, const Str
ing&, ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>, unsigned long); |
| 97 | 97 |
| 98 String preprocessEventListener(LocalFrame*, const String& source, const Stri
ng& url, const String& functionName); | 98 String preprocessEventListener(LocalFrame*, const String& source, const Stri
ng& url, const String& functionName); |
| 99 PassOwnPtr<ScriptSourceCode> preprocess(LocalFrame*, const ScriptSourceCode&
); | 99 PassOwnPtr<ScriptSourceCode> preprocess(LocalFrame*, const ScriptSourceCode&
); |
| 100 | 100 |
| 101 // Part of the protocol. | 101 // Part of the protocol. |
| 102 virtual void enable(ErrorString*) OVERRIDE FINAL; | 102 virtual void enable(ErrorString*) OVERRIDE FINAL; |
| 103 virtual void disable(ErrorString*) OVERRIDE FINAL; | 103 virtual void disable(ErrorString*) OVERRIDE FINAL; |
| 104 virtual void setBreakpointsActive(ErrorString*, bool active) OVERRIDE FINAL; | 104 virtual void setBreakpointsActive(ErrorString*, bool active) OVERRIDE FINAL; |
| 105 virtual void setSkipAllPauses(ErrorString*, bool skipped, const bool* untilR
eload) OVERRIDE FINAL; | 105 virtual void setSkipAllPauses(ErrorString*, bool skipped, const bool* untilR
eload) OVERRIDE FINAL; |
| 106 | 106 |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 int m_minFrameCountForSkip; | 243 int m_minFrameCountForSkip; |
| 244 bool m_skipAllPauses; | 244 bool m_skipAllPauses; |
| 245 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; | 245 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; |
| 246 AsyncCallStackTracker m_asyncCallStackTracker; | 246 AsyncCallStackTracker m_asyncCallStackTracker; |
| 247 }; | 247 }; |
| 248 | 248 |
| 249 } // namespace WebCore | 249 } // namespace WebCore |
| 250 | 250 |
| 251 | 251 |
| 252 #endif // !defined(InspectorDebuggerAgent_h) | 252 #endif // !defined(InspectorDebuggerAgent_h) |
| OLD | NEW |