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

Side by Side Diff: Source/bindings/core/dart/DartScriptDebugListener.h

Issue 1656913004: Fix all remaining link and compile errors building dartium 45 both in Release and Debug. (Closed) Base URL: svn://svn.chromium.org/blink/branches/dart/2454_1
Patch Set: Created 4 years, 10 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) 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
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
OLDNEW
« no previous file with comments | « Source/bindings/core/dart/DartInspectorDebuggerAgent.cpp ('k') | Source/bindings/core/dart/DartScriptDebugServer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698