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

Unified Diff: include/v8-debug.h

Issue 322293003: Removed dead API entries. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/v8-debug.h
diff --git a/include/v8-debug.h b/include/v8-debug.h
index 3c738d1a1c814f0f7f186a9460b6ae080ade5986..75f9c7683e598145540e2c0e30d28a8d2faa3bc6 100644
--- a/include/v8-debug.h
+++ b/include/v8-debug.h
@@ -172,11 +172,6 @@ class V8_EXPORT Debug {
// stops.
static void DebugBreakForCommand(Isolate* isolate, ClientData* data);
- // TODO(svenpanne) Remove this when Chrome is updated.
- static void DebugBreakForCommand(ClientData* data, Isolate* isolate) {
- DebugBreakForCommand(isolate, data);
- }
-
// Message based interface. The message protocol is JSON.
static void SetMessageHandler(MessageHandler handler);
@@ -258,11 +253,6 @@ class V8_EXPORT Debug {
* unexpectedly used. LiveEdit is enabled by default.
*/
static void SetLiveEditEnabled(Isolate* isolate, bool enable);
-
- // TODO(svenpanne) Remove this when Chrome is updated.
- static void SetLiveEditEnabled(bool enable, Isolate* isolate) {
- SetLiveEditEnabled(isolate, enable);
- }
};
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698