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

Side by Side Diff: chrome/common/service_messages.h

Issue 7485011: Virtual Cloud Print Driver for Mac. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fixed copyright Created 9 years, 4 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/pref_names.cc ('k') | chrome/service/chrome_service_application_mac.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Multiply-included message file, no traditional include guard. 5 // Multiply-included message file, no traditional include guard.
6 #include <string> 6 #include <string>
7 7
8 #include "chrome/common/cloud_print/cloud_print_proxy_info.h" 8 #include "chrome/common/cloud_print/cloud_print_proxy_info.h"
9 #include "ipc/ipc_channel_handle.h" 9 #include "ipc/ipc_channel_handle.h"
10 #include "ipc/ipc_message_macros.h" 10 #include "ipc/ipc_message_macros.h"
(...skipping 27 matching lines...) Expand all
38 // Requests a message back on the current status of the cloud print proxy 38 // Requests a message back on the current status of the cloud print proxy
39 // (whether it is enabled, the email address and the proxy id). 39 // (whether it is enabled, the email address and the proxy id).
40 IPC_MESSAGE_CONTROL0(ServiceMsg_GetCloudPrintProxyInfo) 40 IPC_MESSAGE_CONTROL0(ServiceMsg_GetCloudPrintProxyInfo)
41 41
42 // Tell the service process to shutdown. 42 // Tell the service process to shutdown.
43 IPC_MESSAGE_CONTROL0(ServiceMsg_Shutdown) 43 IPC_MESSAGE_CONTROL0(ServiceMsg_Shutdown)
44 44
45 // Tell the service process that an update is available. 45 // Tell the service process that an update is available.
46 IPC_MESSAGE_CONTROL0(ServiceMsg_UpdateAvailable) 46 IPC_MESSAGE_CONTROL0(ServiceMsg_UpdateAvailable)
47 47
48 // Tell the service process to enable the Mac Virtual driver.
49 IPC_MESSAGE_CONTROL0(ServiceMsg_EnableVirtualDriver)
50
51 // Tell the service process to disable the Mac Virtual driver.
52 IPC_MESSAGE_CONTROL0(ServiceMsg_DisableVirtualDriver)
53
48 //----------------------------------------------------------------------------- 54 //-----------------------------------------------------------------------------
49 // Service process host messages: 55 // Service process host messages:
50 // These are messages from the service process to the browser. 56 // These are messages from the service process to the browser.
51 // Sent when the cloud print proxy has an authentication error. 57 // Sent when the cloud print proxy has an authentication error.
52 IPC_MESSAGE_CONTROL0(ServiceHostMsg_CloudPrintProxy_AuthError) 58 IPC_MESSAGE_CONTROL0(ServiceHostMsg_CloudPrintProxy_AuthError)
53 59
54 // Sent as a response to a request for cloud print proxy info 60 // Sent as a response to a request for cloud print proxy info
55 IPC_MESSAGE_CONTROL1(ServiceHostMsg_CloudPrintProxy_Info, 61 IPC_MESSAGE_CONTROL1(ServiceHostMsg_CloudPrintProxy_Info,
56 cloud_print::CloudPrintProxyInfo /* proxy info */) 62 cloud_print::CloudPrintProxyInfo /* proxy info */)
OLDNEW
« no previous file with comments | « chrome/common/pref_names.cc ('k') | chrome/service/chrome_service_application_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698