Revision: 3665
Author: [email protected]
Date: Wed Jan 20 09:06:23 2010
Log: Don't mention obsolete Issue 548

Review URL: http://codereview.chromium.org/543121
http://code.google.com/p/v8/source/detail?r=3665

Modified:
 /branches/bleeding_edge/samples/lineprocessor.cc

=======================================
--- /branches/bleeding_edge/samples/lineprocessor.cc Tue Jan 19 10:36:51 2010 +++ /branches/bleeding_edge/samples/lineprocessor.cc Wed Jan 20 09:06:23 2010
@@ -134,7 +134,7 @@

   int port_number = -1;
   bool wait_for_connection = false;
-  bool support_callback = true;
+  bool support_callback = false;
   MainCycleType cycle_type = CycleInCpp;

   for (int i = 1; i < argc; i++) {
@@ -144,9 +144,7 @@
       // alone JavaScript engines.
       continue;
     } else if (strcmp(str, "--callback") == 0) {
-      // TODO(548): implement this.
-      printf("Error: debugger agent callback is not supported yet.\n");
-      return 1;
+      support_callback = true;
     } else if (strcmp(str, "--wait-for-connection") == 0) {
       wait_for_connection = true;
     } else if (strcmp(str, "--main-cycle-in-cpp") == 0) {
-- 
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to