Index: chrome/service/cloud_print/print_system_win.cc |
diff --git a/chrome/service/cloud_print/print_system_win.cc b/chrome/service/cloud_print/print_system_win.cc |
index 6b1d5df817e343ae2e1d7427f5ed48e4cdedc66f..dc12e44cb2b2ee34b8e2416b40c39a4ec5da7e27 100644 |
--- a/chrome/service/cloud_print/print_system_win.cc |
+++ b/chrome/service/cloud_print/print_system_win.cc |
@@ -882,20 +882,6 @@ std::string PrintSystemWin::GetSupportedMimeTypes() { |
return "application/pdf"; |
} |
- |
-std::string PrintSystem::GenerateProxyId() { |
- GUID proxy_id = {0}; |
- HRESULT hr = UuidCreate(&proxy_id); |
- DCHECK(SUCCEEDED(hr)); |
- wchar_t* proxy_id_as_string = NULL; |
- UuidToString(&proxy_id, reinterpret_cast<RPC_WSTR *>(&proxy_id_as_string)); |
- DCHECK(proxy_id_as_string); |
- std::string ret; |
- WideToUTF8(proxy_id_as_string, wcslen(proxy_id_as_string), &ret); |
- RpcStringFree(reinterpret_cast<RPC_WSTR *>(&proxy_id_as_string)); |
- return ret; |
-} |
- |
scoped_refptr<PrintSystem> PrintSystem::CreateInstance( |
const base::DictionaryValue* print_system_settings) { |
return new PrintSystemWin; |