summaryrefslogtreecommitdiffstats
path: root/chrome/common/service_messages_internal.h
blob: 99d1dd8b78bd418447786769d683f43ae26fff13 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// Copyright (c) 2010 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.

#include <string>

// This header is meant to be included in multiple passes, hence no traditional
// header guard.
// See ipc_message_macros.h for explanation of the macros and passes.

// This file needs to be included again, even though we're actually included
// from it via utility_messages.h.
#include "ipc/ipc_message_macros.h"

//------------------------------------------------------------------------------
// Service process messages:
// These are messages from the browser to the service process.
IPC_BEGIN_MESSAGES(Service)

  // Tell the service process to enable the cloud proxy passing in the lsid
  // of the account to be used.
  IPC_MESSAGE_CONTROL1(ServiceMsg_EnableCloudPrintProxy,
                       std::string /* lsid */)
  // Tell the service process to enable the cloud proxy passing in specific
  // tokens to be used.
  IPC_MESSAGE_CONTROL2(ServiceMsg_EnableCloudPrintProxyWithTokens,
                       std::string, /* token for cloudprint service */
                       std::string  /* token for Google Talk service */)
  // Tell the service process to disable the cloud proxy.
  IPC_MESSAGE_CONTROL0(ServiceMsg_DisableCloudPrintProxy)

  // This message is for testing purpose.
  IPC_MESSAGE_CONTROL0(ServiceMsg_Hello)

  // Tell the service process to shutdown.
  IPC_MESSAGE_CONTROL0(ServiceMsg_Shutdown)

IPC_END_MESSAGES(Service)

//------------------------------------------------------------------------------
// Service process host messages:
// These are messages from the service process to the browser.
IPC_BEGIN_MESSAGES(ServiceHost)

  // Sent when the cloud print proxy has an authentication error.
  IPC_MESSAGE_CONTROL0(ServiceHostMsg_CloudPrintProxy_AuthError)

  // Sent from the service process in response to a Hello message.
  IPC_MESSAGE_CONTROL0(ServiceHostMsg_GoodDay)

IPC_END_MESSAGES(ServiceHost)