summaryrefslogtreecommitdiff
path: root/chromium/chrome/common/cloud_print.mojom
blob: 6e643410ca88b28f1207524a8df9963c6c21a8b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

module cloud_print.mojom;

import "mojo/public/mojom/base/values.mojom";

// An interface for controlling cloud print running in a service process.
interface CloudPrint {
  // Tell the service process to enable the cloud proxy passing in the OAuth2
  // auth code of a robot account.
  EnableCloudPrintProxyWithRobot(
      string robot_auth_code,
      string robot_email,
      string user_email,
      mojo_base.mojom.DictionaryValue user_settings);

  // Tell the service process to disable the cloud proxy.
  DisableCloudPrintProxy();

  // Gets the current status of the cloud print proxy
  // (whether it is enabled, the email address and the proxy id).
  GetCloudPrintProxyInfo() => (bool enabled, string email, string proxy_id);

  // Gets all available printers.
  GetPrinters() => (array<string> printers);
};