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

Unified Diff: chromeos/printing/fake_printer_discoverer.cc

Issue 2450653003: [CUPS] Fix a typo error of the fake printer's protocol. (Closed)
Patch Set: Created 4 years, 2 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: chromeos/printing/fake_printer_discoverer.cc
diff --git a/chromeos/printing/fake_printer_discoverer.cc b/chromeos/printing/fake_printer_discoverer.cc
index 3b41c03b911bd20c5890f479ccad7ab544b17deb..eb5804e06e629698251500b17103c46b8ef4f089 100644
--- a/chromeos/printing/fake_printer_discoverer.cc
+++ b/chromeos/printing/fake_printer_discoverer.cc
@@ -67,7 +67,7 @@ FakePrinterDiscoverer::FakePrinterDiscoverer()
printers_[i].set_manufacturer("Chromium");
printers_[i].set_model(i % 3 == 0 ? "Inkjet" : "Laser Maker");
printers_[i].set_uri(
- base::StringPrintf("lpr://192.168.1.%d:9100/bldg/printer", i));
+ base::StringPrintf("lpd://192.168.1.%d:9100/bldg/printer", i));
printers_[i].set_uuid(
base::StringPrintf("UUID-%4d-%4d-%4d-UUID", i * 3, i * 2, i));
}
« 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