From a529af57f7b475e18cb878712c42c95c7c82e56b Mon Sep 17 00:00:00 2001 From: "abeera@google.com" Date: Mon, 15 Aug 2011 20:56:17 +0000 Subject: Virtual Cloud Print Driver for Mac. Includes code for the driver itself. Also modifies the browser process as well as service process to register Apple Event handlers. Also changes the service process to allow registration of driver. BUG= TEST= Review URL: http://codereview.chromium.org/7485011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@96825 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/service/service_main.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'chrome/service/service_main.cc') diff --git a/chrome/service/service_main.cc b/chrome/service/service_main.cc index 9242c17..bd5e66f 100644 --- a/chrome/service/service_main.cc +++ b/chrome/service/service_main.cc @@ -12,7 +12,7 @@ #if defined(OS_WIN) #include "content/common/sandbox_policy.h" #elif defined(OS_MACOSX) -#include "content/common/chrome_application_mac.h" +#include "chrome/service/chrome_service_application_mac.h" #endif // defined(OS_WIN) // Mainline routine for running as the service process. @@ -27,7 +27,7 @@ int ServiceProcessMain(const MainFunctionParams& parameters) { << parameters.command_line_.GetCommandLineString(); #if defined(OS_MACOSX) - chrome_application_mac::RegisterCrApp(); + chrome_service_application_mac::RegisterServiceCrApp(); #endif base::PlatformThread::SetName("CrServiceMain"); -- cgit v1.1