| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2014 Google Inc. All rights reserved. | 3 * Copyright (C) 2014 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 enum SkipPauseRequest { | 77 enum SkipPauseRequest { |
| 78 NoSkip, | 78 NoSkip, |
| 79 Continue, | 79 Continue, |
| 80 StepInto, | 80 StepInto, |
| 81 StepOut | 81 StepOut |
| 82 }; | 82 }; |
| 83 | 83 |
| 84 virtual ~DartScriptDebugListener() { } | 84 virtual ~DartScriptDebugListener() { } |
| 85 | 85 |
| 86 virtual void didParseSource(const String& scriptId, const Script&, CompileRe
sult) = 0; | 86 virtual void didParseSource(const String& scriptId, const Script&, CompileRe
sult) = 0; |
| 87 virtual SkipPauseRequest didPause(DartScriptState*, Dart_StackTrace callFram
es, const ScriptValue& exception, const Vector<String>& hitBreakpoints) = 0; | 87 virtual SkipPauseRequest didPause(DartScriptState*, Dart_StackTrace callFram
es, Dart_Handle exception, const Vector<String>& hitBreakpoints) = 0; |
| 88 virtual void didContinue() = 0; | 88 virtual void didContinue() = 0; |
| 89 }; | 89 }; |
| 90 | 90 |
| 91 } // namespace blink | 91 } // namespace blink |
| 92 | 92 |
| 93 | 93 |
| 94 #endif // DartScriptDebugListener_h | 94 #endif // DartScriptDebugListener_h |
| OLD | NEW |