[debugger] remove deprecated api functions.

Review-Url: https://codereview.chromium.org/2162503002
Cr-Commit-Position: refs/heads/master@{#37892}
This commit is contained in:
yangguo 2016-07-20 01:50:32 -07:00 committed by Commit bot
parent 1f3c8dc71f
commit ff542972f6
2 changed files with 0 additions and 46 deletions

View File

@ -157,9 +157,6 @@ class V8_EXPORT Debug {
static bool SetDebugEventListener(Isolate* isolate, EventCallback that,
Local<Value> data = Local<Value>());
V8_DEPRECATED("Use version with an Isolate",
static bool SetDebugEventListener(
EventCallback that, Local<Value> data = Local<Value>()));
// Schedule a debugger break to happen when JavaScript code is run
// in the given isolate.
@ -174,8 +171,6 @@ class V8_EXPORT Debug {
// Message based interface. The message protocol is JSON.
static void SetMessageHandler(Isolate* isolate, MessageHandler handler);
V8_DEPRECATED("Use version with an Isolate",
static void SetMessageHandler(MessageHandler handler));
static void SendCommand(Isolate* isolate,
const uint16_t* command, int length,
@ -199,9 +194,6 @@ class V8_EXPORT Debug {
* }
* \endcode
*/
static V8_DEPRECATED("Use maybe version",
Local<Value> Call(v8::Local<v8::Function> fun,
Local<Value> data = Local<Value>()));
// TODO(dcarney): data arg should be a MaybeLocal
static MaybeLocal<Value> Call(Local<Context> context,
v8::Local<v8::Function> fun,
@ -210,8 +202,6 @@ class V8_EXPORT Debug {
/**
* Returns a mirror object for the given object.
*/
static V8_DEPRECATED("Use maybe version",
Local<Value> GetMirror(v8::Local<v8::Value> obj));
static MaybeLocal<Value> GetMirror(Local<Context> context,
v8::Local<v8::Value> obj);
@ -247,8 +237,6 @@ class V8_EXPORT Debug {
* of this method.
*/
static void ProcessDebugMessages(Isolate* isolate);
V8_DEPRECATED("Use version with an Isolate",
static void ProcessDebugMessages());
/**
* Debugger is running in its own context which is entered while debugger
@ -258,8 +246,6 @@ class V8_EXPORT Debug {
* least one DebugEventListener or MessageHandler is set.
*/
static Local<Context> GetDebugContext(Isolate* isolate);
V8_DEPRECATED("Use version with an Isolate",
static Local<Context> GetDebugContext());
/**
* While in the debug context, this method returns the top-most non-debug

View File

@ -8245,12 +8245,6 @@ bool Debug::SetDebugEventListener(Isolate* isolate, EventCallback that,
}
bool Debug::SetDebugEventListener(EventCallback that, Local<Value> data) {
return SetDebugEventListener(
reinterpret_cast<Isolate*>(i::Isolate::Current()), that, data);
}
void Debug::DebugBreak(Isolate* isolate) {
reinterpret_cast<i::Isolate*>(isolate)->stack_guard()->RequestDebugBreak();
}
@ -8276,11 +8270,6 @@ void Debug::SetMessageHandler(Isolate* isolate,
}
void Debug::SetMessageHandler(v8::Debug::MessageHandler handler) {
SetMessageHandler(reinterpret_cast<Isolate*>(i::Isolate::Current()), handler);
}
void Debug::SendCommand(Isolate* isolate,
const uint16_t* command,
int length,
@ -8310,13 +8299,6 @@ MaybeLocal<Value> Debug::Call(Local<Context> context,
}
Local<Value> Debug::Call(v8::Local<v8::Function> fun,
v8::Local<v8::Value> data) {
auto context = ContextFromHeapObject(Utils::OpenHandle(*fun));
RETURN_TO_LOCAL_UNCHECKED(Call(context, fun, data), Value);
}
MaybeLocal<Value> Debug::GetMirror(Local<Context> context,
v8::Local<v8::Value> obj) {
PREPARE_FOR_EXECUTION(context, Debug, GetMirror, Value);
@ -8338,21 +8320,11 @@ MaybeLocal<Value> Debug::GetMirror(Local<Context> context,
}
Local<Value> Debug::GetMirror(v8::Local<v8::Value> obj) {
RETURN_TO_LOCAL_UNCHECKED(GetMirror(Local<Context>(), obj), Value);
}
void Debug::ProcessDebugMessages(Isolate* isolate) {
reinterpret_cast<i::Isolate*>(isolate)->debug()->ProcessDebugMessages(true);
}
void Debug::ProcessDebugMessages() {
ProcessDebugMessages(reinterpret_cast<Isolate*>(i::Isolate::Current()));
}
Local<Context> Debug::GetDebugContext(Isolate* isolate) {
i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
ENTER_V8(i_isolate);
@ -8360,10 +8332,6 @@ Local<Context> Debug::GetDebugContext(Isolate* isolate) {
}
Local<Context> Debug::GetDebugContext() {
return GetDebugContext(reinterpret_cast<Isolate*>(i::Isolate::Current()));
}
MaybeLocal<Context> Debug::GetDebuggedContext(Isolate* isolate) {
i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
ENTER_V8(i_isolate);