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

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

Issue 10537182: The user's consent to crash dumps reporting can now be set via the UI (Windows only). The checkbox … (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 8 years, 6 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 | « remoting/host/host_service_win.cc ('k') | remoting/host/plugin/daemon_controller.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 <?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 <?if $(var.Branding) ~= Chrome ?> 7 <?if $(var.Branding) ~= Chrome ?>
8 <?define ChromotingHost = "Chrome Remote Desktop Host" ?> 8 <?define ChromotingHost = "Chrome Remote Desktop Host" ?>
9 <?define FirewallName = "Chrome Remote Desktop Host" ?> 9 <?define FirewallName = "Chrome Remote Desktop Host" ?>
10 <?define Manufacturer = "Google Inc." ?> 10 <?define Manufacturer = "Google Inc." ?>
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 Name="Enabled" 263 Name="Enabled"
264 Value="1"/> 264 Value="1"/>
265 <RegistryValue Type="string" 265 <RegistryValue Type="string"
266 Name="IconReference" 266 Name="IconReference"
267 Value="@[#$(var.ControllerBinary)],-101"/> 267 Value="@[#$(var.ControllerBinary)],-101"/>
268 </RegistryKey> 268 </RegistryKey>
269 </RegistryKey> 269 </RegistryKey>
270 </RegistryKey> 270 </RegistryKey>
271 271
272 <RegistryKey Key="Interface"> 272 <RegistryKey Key="Interface">
273 <RegistryKey Key="{655bd819-c08c-4b04-80c2-f160739ff6ef}"
274 Action="create">
275 <RegistryKey Key="ProxyStubClsid32" Action="create">
276 <RegistryValue Type="string"
277 Value="{00020424-0000-0000-C000-000000000046}"/>
278 </RegistryKey>
279
280 <RegistryKey Key="TypeLib" Action="create">
281 <RegistryValue Type="string"
282 Value="$(var.ControllerTypelib)"/>
283 </RegistryKey>
284 </RegistryKey>
285
273 <RegistryKey Key="{e051a481-6345-4ba1-bdb1-cf7929955268}" 286 <RegistryKey Key="{e051a481-6345-4ba1-bdb1-cf7929955268}"
274 Action="create"> 287 Action="create">
275 <RegistryKey Key="ProxyStubClsid32" Action="create"> 288 <RegistryKey Key="ProxyStubClsid32" Action="create">
276 <RegistryValue Type="string" 289 <RegistryValue Type="string"
277 Value="{00020424-0000-0000-C000-000000000046}"/> 290 Value="{00020424-0000-0000-C000-000000000046}"/>
278 </RegistryKey> 291 </RegistryKey>
279 292
280 <RegistryKey Key="TypeLib" Action="create"> 293 <RegistryKey Key="TypeLib" Action="create">
281 <RegistryValue Type="string" 294 <RegistryValue Type="string"
282 Value="$(var.ControllerTypelib)"/> 295 Value="$(var.ControllerTypelib)"/>
283 </RegistryKey> 296 </RegistryKey>
284 </RegistryKey> 297 </RegistryKey>
285 </RegistryKey> 298 </RegistryKey>
286 299
287 <RegistryKey Key="Typelib"> 300 <RegistryKey Key="Typelib">
288 <RegistryKey Key="$(var.ControllerTypelib)" Action="create"> 301 <RegistryKey Key="$(var.ControllerTypelib)" Action="create">
289 <RegistryKey Key="1.0" Action="create"> 302 <RegistryKey Key="1.1" Action="create">
290 <RegistryKey Key="0" Action="create"> 303 <RegistryKey Key="0" Action="create">
291 <RegistryKey Key="win32" Action="create"> 304 <RegistryKey Key="win32" Action="create">
292 <RegistryValue Type="string" 305 <RegistryValue Type="string"
293 Value="[#$(var.ControllerBinary)]"/> 306 Value="[#$(var.ControllerBinary)]"/>
294 </RegistryKey> 307 </RegistryKey>
295 </RegistryKey> 308 </RegistryKey>
296 309
297 <RegistryKey Key="FLAGS" Action="create"> 310 <RegistryKey Key="FLAGS" Action="create">
298 <RegistryValue Type="string" 311 <RegistryValue Type="string"
299 Value="0"/> 312 Value="0"/>
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
357 <Property Id="ARPPRODUCTICON" Value="chromoting.ico" /> 370 <Property Id="ARPPRODUCTICON" Value="chromoting.ico" />
358 371
359 <InstallExecuteSequence> 372 <InstallExecuteSequence>
360 <Custom Action="query_auto_start_service" Before="InstallInitialize"/> 373 <Custom Action="query_auto_start_service" Before="InstallInitialize"/>
361 <Custom Action="set_auto_start_service" After="StartServices"> 374 <Custom Action="set_auto_start_service" After="StartServices">
362 <![CDATA[NOT REMOVE AND (auto_start_service = "#2")]]> 375 <![CDATA[NOT REMOVE AND (auto_start_service = "#2")]]>
363 </Custom> 376 </Custom>
364 </InstallExecuteSequence> 377 </InstallExecuteSequence>
365 </Product> 378 </Product>
366 </Wix> 379 </Wix>
OLDNEW
« no previous file with comments | « remoting/host/host_service_win.cc ('k') | remoting/host/plugin/daemon_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698