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

Side by Side Diff: remoting/host/installer/chromoting.wxs

Issue 10832054: Removing --host-binary parameter in preparation to the coming me2me host refactoring. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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
OLDNEW
1 <?xml version="1.0"?> 1 <?xml version="1.0"?>
2 <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> 2 <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
3 3
4 <?define EventSourceName = "chromoting" ?> 4 <?define EventSourceName = "chromoting" ?>
5 <?define ServiceName = "chromoting" ?> 5 <?define ServiceName = "chromoting" ?>
6 6
7 <!-- TODO(alexeypa): There strings should be localized, 7 <!-- TODO(alexeypa): There strings should be localized,
8 see http://crbug.com/121785 --> 8 see http://crbug.com/121785 -->
9 <?if $(var.Branding) ~= Chrome ?> 9 <?if $(var.Branding) ~= Chrome ?>
10 <?define ChromotingHost = "Chrome Remote Desktop Host" ?> 10 <?define ChromotingHost = "Chrome Remote Desktop Host" ?>
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 KeyPath="yes" 122 KeyPath="yes"
123 Name="remoting_service.exe" 123 Name="remoting_service.exe"
124 Vital="yes"/> 124 Vital="yes"/>
125 125
126 <ServiceInstall Id="install_service" 126 <ServiceInstall Id="install_service"
127 Type="ownProcess" 127 Type="ownProcess"
128 Vital="yes" 128 Vital="yes"
129 Name="$(var.ServiceName)" 129 Name="$(var.ServiceName)"
130 DisplayName="[chromoting_service_display_name]" 130 DisplayName="[chromoting_service_display_name]"
131 Description="[chromoting_service_description]" 131 Description="[chromoting_service_description]"
132 Arguments="--host-binary=&quot;[binaries]remoting_me2me_ host.exe&quot; --auth-config=&quot;[config_files]host.json&quot; --host-config=& quot;[config_files]host.json&quot;" 132 Arguments="--auth-config=&quot;[config_files]host.json&q uot; --host-config=&quot;[config_files]host.json&quot;"
133 Start="demand" 133 Start="demand"
134 Account="LocalSystem" 134 Account="LocalSystem"
135 ErrorControl="ignore" 135 ErrorControl="ignore"
136 Interactive="no" /> 136 Interactive="no" />
137 137
138 <ServiceControl Id="start_service" 138 <ServiceControl Id="start_service"
139 Stop="both" 139 Stop="both"
140 Remove="uninstall" 140 Remove="uninstall"
141 Name="$(var.ServiceName)" 141 Name="$(var.ServiceName)"
142 Wait="yes" /> 142 Wait="yes" />
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 </Custom> 406 </Custom>
407 <Custom Action="set_service_display_name" Before="InstallInitialize"> 407 <Custom Action="set_service_display_name" Before="InstallInitialize">
408 <![CDATA[VersionNT >= 600]]> 408 <![CDATA[VersionNT >= 600]]>
409 </Custom> 409 </Custom>
410 <Custom Action="set_service_description" Before="InstallInitialize"> 410 <Custom Action="set_service_description" Before="InstallInitialize">
411 <![CDATA[VersionNT >= 600]]> 411 <![CDATA[VersionNT >= 600]]>
412 </Custom> 412 </Custom>
413 </InstallExecuteSequence> 413 </InstallExecuteSequence>
414 </Product> 414 </Product>
415 </Wix> 415 </Wix>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698