Index: chrome/service/service_ipc_server.cc |
diff --git a/chrome/service/service_ipc_server.cc b/chrome/service/service_ipc_server.cc |
index f25ce7bf927ab4b30689ad2f7a47ee5ea612bfa9..4cca7ecab48f0679ae25a97088ba8a14ee56994b 100644 |
--- a/chrome/service/service_ipc_server.cc |
+++ b/chrome/service/service_ipc_server.cc |
@@ -111,11 +111,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() { |