| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 | 91 |
| 92 virtual void canSetScriptSource(ErrorString*, bool* result) OVERRIDE FINAL {
*result = true; } | 92 virtual void canSetScriptSource(ErrorString*, bool* result) OVERRIDE FINAL {
*result = true; } |
| 93 | 93 |
| 94 virtual void init() OVERRIDE FINAL; | 94 virtual void init() OVERRIDE FINAL; |
| 95 virtual void setFrontend(InspectorFrontend*) OVERRIDE FINAL; | 95 virtual void setFrontend(InspectorFrontend*) OVERRIDE FINAL; |
| 96 virtual void clearFrontend() OVERRIDE FINAL; | 96 virtual void clearFrontend() OVERRIDE FINAL; |
| 97 virtual void restore() OVERRIDE FINAL; | 97 virtual void restore() OVERRIDE FINAL; |
| 98 | 98 |
| 99 bool isPaused(); | 99 bool isPaused(); |
| 100 bool runningNestedMessageLoop(); | 100 bool runningNestedMessageLoop(); |
| 101 void addMessageToConsole(ConsoleMessage*); | 101 void addMessageToConsole(PassRefPtr<ConsoleMessage>); |
| 102 | 102 |
| 103 String preprocessEventListener(LocalFrame*, const String& source, const Stri
ng& url, const String& functionName); | 103 String preprocessEventListener(LocalFrame*, const String& source, const Stri
ng& url, const String& functionName); |
| 104 PassOwnPtr<ScriptSourceCode> preprocess(LocalFrame*, const ScriptSourceCode&
); | 104 PassOwnPtr<ScriptSourceCode> preprocess(LocalFrame*, const ScriptSourceCode&
); |
| 105 | 105 |
| 106 // Part of the protocol. | 106 // Part of the protocol. |
| 107 virtual void enable(ErrorString*) OVERRIDE FINAL; | 107 virtual void enable(ErrorString*) OVERRIDE FINAL; |
| 108 virtual void disable(ErrorString*) OVERRIDE FINAL; | 108 virtual void disable(ErrorString*) OVERRIDE FINAL; |
| 109 virtual void setBreakpointsActive(ErrorString*, bool active) OVERRIDE FINAL; | 109 virtual void setBreakpointsActive(ErrorString*, bool active) OVERRIDE FINAL; |
| 110 virtual void setSkipAllPauses(ErrorString*, bool skipped, const bool* untilR
eload) OVERRIDE FINAL; | 110 virtual void setSkipAllPauses(ErrorString*, bool skipped, const bool* untilR
eload) OVERRIDE FINAL; |
| 111 | 111 |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 int m_minFrameCountForSkip; | 265 int m_minFrameCountForSkip; |
| 266 bool m_skipAllPauses; | 266 bool m_skipAllPauses; |
| 267 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; | 267 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; |
| 268 OwnPtrWillBeMember<AsyncCallStackTracker> m_asyncCallStackTracker; | 268 OwnPtrWillBeMember<AsyncCallStackTracker> m_asyncCallStackTracker; |
| 269 }; | 269 }; |
| 270 | 270 |
| 271 } // namespace blink | 271 } // namespace blink |
| 272 | 272 |
| 273 | 273 |
| 274 #endif // !defined(InspectorDebuggerAgent_h) | 274 #endif // !defined(InspectorDebuggerAgent_h) |
| OLD | NEW |