mirror of
https://github.com/Alex313031/thorium.git
synced 2025-01-10 03:47:44 -03:00
Update chromium_install_modes.cc
This commit is contained in:
parent
f973d2ee2c
commit
b751fc0539
1 changed files with 50 additions and 38 deletions
|
@ -2,7 +2,7 @@
|
|||
// Use of this source code is governed by a BSD-style license that can be
|
||||
// found in the LICENSE file.
|
||||
|
||||
// Brand-specific constants and install modes for Chromium.
|
||||
// Brand-specific constants and install modes for Thorium.
|
||||
|
||||
#include "chrome/install_static/chromium_install_modes.h"
|
||||
|
||||
|
@ -27,43 +27,55 @@ const char kDeviceManagementServerHostName[] = "";
|
|||
const InstallConstants kInstallModes[] = {
|
||||
// The primary (and only) install mode for Chromium.
|
||||
{
|
||||
sizeof(kInstallModes[0]),
|
||||
CHROMIUM_INDEX, // The one and only mode for Chromium.
|
||||
"", // No install switch for the primary install mode.
|
||||
L"", // Empty install_suffix for the primary install mode.
|
||||
L"", // No logo suffix for the primary install mode.
|
||||
L"", // Empty app_guid since no integraion with Google Update.
|
||||
L"Thorium", // A distinct base_app_name.
|
||||
L"Thorium", // A distinct base_app_id.
|
||||
L"ThoriumHTM", // ProgID prefix.
|
||||
L"Thorium HTML Document", // ProgID description.
|
||||
L"{7D2B3E1D-D096-4594-9D8F-A6667F12E0AC}", // Active Setup GUID.
|
||||
L"{A2DF06F9-A21A-44A8-8A99-8B9C84F29160}", // CommandExecuteImpl CLSID.
|
||||
{0x635EFA6F,
|
||||
0x08D6,
|
||||
0x4EC9,
|
||||
{0xBD, 0x14, 0x8A, 0x0F, 0xDE, 0x97, 0x51,
|
||||
0x59}}, // Toast Activator CLSID.
|
||||
{0xD133B120,
|
||||
0x6DB4,
|
||||
0x4D6B,
|
||||
{0x8B, 0xFE, 0x83, 0xBF, 0x8C, 0xA1, 0xB1, 0xB0}}, // Elevator CLSID.
|
||||
|
||||
{0xb88c45b9,
|
||||
0x8825,
|
||||
0x4629,
|
||||
{0xb8, 0x3e, 0x77, 0xcc, 0x67, 0xd9, 0xce,
|
||||
0xed}}, // IElevator IID and TypeLib
|
||||
// {B88C45B9-8825-4629-B83E-77CC67D9CEED}.
|
||||
L"", // Empty default channel name since no update integration.
|
||||
ChannelStrategy::UNSUPPORTED,
|
||||
true, // Supports system-level installs.
|
||||
true, // Supports in-product set as default browser UX.
|
||||
false, // Does not support retention experiments.
|
||||
icon_resources::kApplicationIndex, // App icon resource index.
|
||||
IDR_MAINFRAME, // App icon resource id.
|
||||
L"S-1-15-2-3251537155-1984446955-2931258699-841473695-1938553385-"
|
||||
L"924012148-", // App container sid prefix for sandbox.
|
||||
.size = sizeof(kInstallModes[0]),
|
||||
.index = CHROMIUM_INDEX, // The one and only mode for Chromium.
|
||||
.install_switch =
|
||||
"", // No install switch for the primary install mode.
|
||||
.install_suffix =
|
||||
L"", // Empty install_suffix for the primary install mode.
|
||||
.logo_suffix = L"", // No logo suffix for the primary install mode.
|
||||
.app_guid =
|
||||
L"", // Empty app_guid since no integraion with Google Update.
|
||||
.base_app_name = L"Thorium", // A distinct base_app_name.
|
||||
.base_app_id = L"Thorium", // A distinct base_app_id.
|
||||
.prog_id_prefix = L"ThoriumHTM", // ProgID prefix.
|
||||
.prog_id_description =
|
||||
L"Thorium HTML Document", // ProgID description.
|
||||
.active_setup_guid =
|
||||
L"{7D2B3E1D-D096-4594-9D8F-A6667F12E0AC}", // Active Setup GUID.
|
||||
.legacy_command_execute_clsid =
|
||||
L"{A2DF06F9-A21A-44A8-8A99-8B9C84F29160}", // CommandExecuteImpl
|
||||
// CLSID.
|
||||
.toast_activator_clsid = {0x635EFA6F,
|
||||
0x08D6,
|
||||
0x4EC9,
|
||||
{0xBD, 0x14, 0x8A, 0x0F, 0xDE, 0x97, 0x51,
|
||||
0x59}}, // Toast Activator CLSID.
|
||||
.elevator_clsid = {0xD133B120,
|
||||
0x6DB4,
|
||||
0x4D6B,
|
||||
{0x8B, 0xFE, 0x83, 0xBF, 0x8C, 0xA1, 0xB1,
|
||||
0xB0}}, // Elevator CLSID.
|
||||
.elevator_iid = {0xb88c45b9,
|
||||
0x8825,
|
||||
0x4629,
|
||||
{0xb8, 0x3e, 0x77, 0xcc, 0x67, 0xd9, 0xce,
|
||||
0xed}}, // IElevator IID and TypeLib
|
||||
// {B88C45B9-8825-4629-B83E-77CC67D9CEED}.
|
||||
.default_channel_name =
|
||||
L"", // Empty default channel name since no update integration.
|
||||
.channel_strategy = ChannelStrategy::UNSUPPORTED,
|
||||
.supports_system_level = true, // Supports system-level installs.
|
||||
.supports_set_as_default_browser =
|
||||
true, // Supports in-product set as default browser UX.
|
||||
.supports_retention_experiments =
|
||||
false, // Does not support retention experiments.
|
||||
.app_icon_resource_index =
|
||||
icon_resources::kApplicationIndex, // App icon resource index.
|
||||
.app_icon_resource_id = IDR_MAINFRAME, // App icon resource id.
|
||||
.sandbox_sid_prefix =
|
||||
L"S-1-15-2-3251537155-1984446955-2931258699-841473695-1938553385-"
|
||||
L"924012148-", // App container sid prefix for sandbox.
|
||||
},
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue