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

Unified Diff: samples/lineprocessor.cc

Issue 543121: Don't mention obsolete Issue 548 (Closed)
Patch Set: merge Created 10 years, 11 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: samples/lineprocessor.cc
diff --git a/samples/lineprocessor.cc b/samples/lineprocessor.cc
index 804f167582a41b144e720035b19ca9a3bdc56cfc..505dabf9459b7d5d471f870ae55ce7f70ee86304 100644
--- a/samples/lineprocessor.cc
+++ b/samples/lineprocessor.cc
@@ -134,7 +134,7 @@ int RunMain(int argc, char* argv[]) {
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 @@ int RunMain(int argc, char* argv[]) {
// 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) {
« 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