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

Side by Side Diff: Source/core/inspector/ScriptDebugListener.h

Issue 766103003: [Inspector] Deprecate usage of v8::Handle with v8::Local as replacement. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years 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
« no previous file with comments | « Source/core/inspector/ScriptArguments.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2010 Google Inc. All rights reserved. 3 * Copyright (C) 2010 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 }; 96 };
97 97
98 virtual ~ScriptDebugListener() { } 98 virtual ~ScriptDebugListener() { }
99 99
100 virtual void didParseSource(const String& scriptId, const Script&, CompileRe sult) = 0; 100 virtual void didParseSource(const String& scriptId, const Script&, CompileRe sult) = 0;
101 virtual SkipPauseRequest didPause(ScriptState*, const ScriptValue& callFrame s, const ScriptValue& exception, const Vector<String>& hitBreakpoints, bool isPr omiseRejection) = 0; 101 virtual SkipPauseRequest didPause(ScriptState*, const ScriptValue& callFrame s, const ScriptValue& exception, const Vector<String>& hitBreakpoints, bool isPr omiseRejection) = 0;
102 virtual void didContinue() = 0; 102 virtual void didContinue() = 0;
103 virtual bool v8AsyncTaskEventsEnabled() const = 0; 103 virtual bool v8AsyncTaskEventsEnabled() const = 0;
104 virtual void didReceiveV8AsyncTaskEvent(ExecutionContext*, const String& eve ntType, const String& eventName, int id) = 0; 104 virtual void didReceiveV8AsyncTaskEvent(ExecutionContext*, const String& eve ntType, const String& eventName, int id) = 0;
105 virtual bool v8PromiseEventsEnabled() const = 0; 105 virtual bool v8PromiseEventsEnabled() const = 0;
106 virtual void didReceiveV8PromiseEvent(ScriptState*, v8::Handle<v8::Object> p romise, v8::Handle<v8::Value> parentPromise, int status) = 0; 106 virtual void didReceiveV8PromiseEvent(ScriptState*, v8::Local<v8::Object> pr omise, v8::Local<v8::Value> parentPromise, int status) = 0;
107 }; 107 };
108 108
109 } // namespace blink 109 } // namespace blink
110 110
111 111
112 #endif // ScriptDebugListener_h 112 #endif // ScriptDebugListener_h
OLDNEW
« no previous file with comments | « Source/core/inspector/ScriptArguments.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698