Index: chrome/common/cloud_print/cloud_print_helpers.cc |
diff --git a/chrome/common/cloud_print/cloud_print_helpers.cc b/chrome/common/cloud_print/cloud_print_helpers.cc |
index 406c54b33f2cc86ac1aea5c235806a5b329a39d4..03fba827f710179baf42b2d5190d9623596ce544 100644 |
--- a/chrome/common/cloud_print/cloud_print_helpers.cc |
+++ b/chrome/common/cloud_print/cloud_print_helpers.cc |
@@ -207,13 +207,6 @@ std::string GetMultipartMimeType(const std::string& mime_boundary) { |
return std::string("multipart/form-data; boundary=") + mime_boundary; |
} |
-// Create a MIME boundary marker (27 '-' characters followed by 16 hex digits). |
-void CreateMimeBoundaryForUpload(std::string* out) { |
- int r1 = base::RandInt(0, std::numeric_limits<int32_t>::max()); |
- int r2 = base::RandInt(0, std::numeric_limits<int32_t>::max()); |
- base::SStringPrintf(out, "---------------------------%08X%08X", r1, r2); |
-} |
- |
std::string GetHashOfPrinterTags(const PrinterTags& printer_tags) { |
return HashPrinterTags(PreparePrinterTags(printer_tags)); |
} |