blob: 446fa2431dc69df70b21cd8afddf024211b60665 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// This file defines implementation of GoogleChromeSxSDistribution.
#include "chrome/installer/util/google_chrome_sxs_distribution.h"
namespace {
const wchar_t kChromeSxSGuid[] = L"{4ea16ac7-fd5a-47c3-875b-dbf4a2008c20}";
} // namespace
GoogleChromeSxSDistribution::GoogleChromeSxSDistribution() {
GoogleChromeDistribution::set_product_guid(kChromeSxSGuid);
}
std::wstring GoogleChromeSxSDistribution::GetInstallSubDir() {
return GoogleChromeDistribution::GetInstallSubDir().append(
installer_util::kSxSSuffix);
}
std::wstring GoogleChromeSxSDistribution::GetUninstallRegPath() {
return GoogleChromeDistribution::GetUninstallRegPath().append(
installer_util::kSxSSuffix);
}
|