Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9736)

Unified Diff: chrome/service/service_ipc_server.cc

Issue 14215009: Changed cloud print private API to pass all page settings as single object. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/service/service_ipc_server.cc
diff --git a/chrome/service/service_ipc_server.cc b/chrome/service/service_ipc_server.cc
index 4cca7ecab48f0679ae25a97088ba8a14ee56994b..9935f3427009ee60b1a1d9f710e0fc8125c8f04b 100644
--- a/chrome/service/service_ipc_server.cc
+++ b/chrome/service/service_ipc_server.cc
@@ -112,11 +112,9 @@ void ServiceIPCServer::OnEnableCloudPrintProxyWithRobot(
const std::string& robot_auth_code,
const std::string& robot_email,
const std::string& user_email,
- bool connect_new_printers,
- const std::vector<std::string>& printer_blacklist) {
+ const base::DictionaryValue& user_settings) {
g_service_process->GetCloudPrintProxy()->EnableForUserWithRobot(
- robot_auth_code, robot_email, user_email, connect_new_printers,
- printer_blacklist);
+ robot_auth_code, robot_email, user_email, user_settings);
}
void ServiceIPCServer::OnGetCloudPrintProxyInfo() {

Powered by Google App Engine
This is Rietveld 408576698