Index: chrome/service/cloud_print/print_system_cups.cc |
diff --git a/chrome/service/cloud_print/print_system_cups.cc b/chrome/service/cloud_print/print_system_cups.cc |
index e7fe1f8a3de7b558319ddfe252a1bea18a3bd931..ea77a2ee2d657ce3d92a912fa6508fa5870a7f29 100644 |
--- a/chrome/service/cloud_print/print_system_cups.cc |
+++ b/chrome/service/cloud_print/print_system_cups.cc |
@@ -683,15 +683,6 @@ std::string PrintSystemCUPS::GetSupportedMimeTypes() { |
"application/pdf,application/postscript,image/jpeg,image/png,image/gif"; |
} |
-std::string PrintSystem::GenerateProxyId() { |
- // TODO(gene): This code should generate a unique id for proxy. ID should be |
- // unique for this user. Rand may return the same number. We'll need to change |
- // this in the future. |
- std::string id("CP_PROXY_"); |
- id += base::Uint64ToString(base::RandUint64()); |
- return id; |
-} |
- |
scoped_refptr<PrintSystem> PrintSystem::CreateInstance( |
const DictionaryValue* print_system_settings) { |
return new PrintSystemCUPS(print_system_settings); |