diff options
author | vitalybuka@chromium.org <vitalybuka@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-08 22:55:55 +0000 |
---|---|---|
committer | vitalybuka@chromium.org <vitalybuka@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-08 22:55:55 +0000 |
commit | e0832490090b060c31ba3e93e74f6b8fed573dbd (patch) | |
tree | 85b8774a816cded4f45610bf4549d1b15d3fadef /chrome/service/service_ipc_server.h | |
parent | aa90589bdd060bb7df2d950e1d648c1a91cd6b4f (diff) | |
download | chromium_src-e0832490090b060c31ba3e93e74f6b8fed573dbd.zip chromium_src-e0832490090b060c31ba3e93e74f6b8fed573dbd.tar.gz chromium_src-e0832490090b060c31ba3e93e74f6b8fed573dbd.tar.bz2 |
New Cloud Print Private API.
Renamed cloudPrintPrivate.setCredentials -> cloudPrintPrivate.setupConnector
Added cloudPrintPrivate.getHostName
Added cloudPrintPrivate.getPrinters
Extracted test logic from cloud_print_private_api.cc
BUG=137129
Review URL: https://chromiumcodereview.appspot.com/11037005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160734 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/service/service_ipc_server.h')
-rw-r--r-- | chrome/service/service_ipc_server.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/chrome/service/service_ipc_server.h b/chrome/service/service_ipc_server.h index b2855be..4f7f5f7 100644 --- a/chrome/service/service_ipc_server.h +++ b/chrome/service/service_ipc_server.h @@ -6,6 +6,7 @@ #define CHROME_SERVICE_SERVICE_IPC_SERVER_H_ #include <string> +#include <vector> #include "base/memory/scoped_ptr.h" #include "ipc/ipc_channel_handle.h" @@ -47,7 +48,9 @@ class ServiceIPCServer : public IPC::Listener, public IPC::Sender { void 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); void OnGetCloudPrintProxyInfo(); void OnDisableCloudPrintProxy(); |