Index: chrome/service/service_ipc_server.cc |
diff --git a/chrome/service/service_ipc_server.cc b/chrome/service/service_ipc_server.cc |
index 0f4060e6b8b188462d37491539b97724ebc290d6..b018e827932acb7c8ae7f1002473710841840e0a 100644 |
--- a/chrome/service/service_ipc_server.cc |
+++ b/chrome/service/service_ipc_server.cc |
@@ -115,11 +115,12 @@ void ServiceIPCServer::OnEnableCloudPrintProxy(const std::string& lsid) { |
void ServiceIPCServer::OnEnableCloudPrintProxyWithRobot( |
const std::string& robot_auth_code, |
const std::string& robot_email, |
- const std::string& user_email) { |
+ const std::string& user_email, |
+ bool connect_new_printers, |
+ const std::vector<std::string>& printer_blacklist) { |
g_service_process->GetCloudPrintProxy()->EnableForUserWithRobot( |
- robot_auth_code, |
- robot_email, |
- user_email); |
+ robot_auth_code, robot_email, user_email, connect_new_printers, |
+ printer_blacklist); |
} |
void ServiceIPCServer::OnGetCloudPrintProxyInfo() { |