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

Side by Side Diff: chrome/installer/util/chrome_app_host_distribution.cc

Issue 10665002: Implement installation of the Chrome App Host. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: A basic working app host installer/uninstaller. Created 8 years, 5 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
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 //
5 // This file defines a specific implementation of BrowserDistribution class for
6 // Chrome App Host. It overrides the bare minimum of methods necessary to get a
7 // Chrome App Host installer that does not interact with Google Chrome or
8 // Chromium installations.
9
10 #include "chrome/installer/util/chrome_app_host_distribution.h"
11
12 #include "base/string_util.h"
13 #include "chrome/common/net/test_server_locations.h"
14 #include "chrome/installer/util/channel_info.h"
15 #include "chrome/installer/util/google_update_constants.h"
16 #include "chrome/installer/util/google_update_settings.h"
17 #include "chrome/installer/util/helper.h"
18 #include "chrome/installer/util/install_util.h"
19 #include "chrome/installer/util/l10n_string_util.h"
20
21 #include "installer_util_strings.h" // NOLINT
22
23 namespace {
24 const wchar_t kChromeAppHostGuid[] = L"{FDA71E6F-AC4C-4a00-8B70-9958A68906BF}";
25 }
26
27 ChromeAppHostDistribution::ChromeAppHostDistribution()
28 : BrowserDistribution(CHROME_APP_HOST) {
29 }
30
31 string16 ChromeAppHostDistribution::GetAppGuid() {
32 return kChromeAppHostGuid;
33 }
34
35 string16 ChromeAppHostDistribution::GetBaseAppName() {
36 return L"Google Chrome App Host";
37 }
38
39 string16 ChromeAppHostDistribution::GetAppShortCutName() {
40 const string16& product_name =
41 installer::GetLocalizedString(IDS_PRODUCT_APP_HOST_NAME_BASE);
42 return product_name;
43 }
44
45 string16 ChromeAppHostDistribution::GetAlternateApplicationName() {
46 const string16& product_name =
47 installer::GetLocalizedString(IDS_PRODUCT_APP_HOST_NAME_BASE);
48 return product_name;
49 }
50
51 string16 ChromeAppHostDistribution::GetInstallSubDir() {
52 return L"Google\\Chrome App Host";
53 }
54
55 string16 ChromeAppHostDistribution::GetPublisherName() {
56 const string16& publisher_name =
57 installer::GetLocalizedString(IDS_ABOUT_VERSION_COMPANY_NAME_BASE);
58 return publisher_name;
59 }
60
61 string16 ChromeAppHostDistribution::GetAppDescription() {
62 return L"A standalone platform for Chrome apps.";
63 }
64
65 string16 ChromeAppHostDistribution::GetLongAppDescription() {
66 return L"A standalone platform for Chrome apps.";
67 }
68
69 std::string ChromeAppHostDistribution::GetSafeBrowsingName() {
70 return "googlechromeapphost";
71 }
72
73 string16 ChromeAppHostDistribution::GetStateKey() {
74 string16 key(google_update::kRegPathClientState);
75 key.append(L"\\");
76 key.append(kChromeAppHostGuid);
77 return key;
78 }
79
80 string16 ChromeAppHostDistribution::GetStateMediumKey() {
81 string16 key(google_update::kRegPathClientStateMedium);
82 key.append(L"\\");
83 key.append(kChromeAppHostGuid);
84 return key;
85 }
86
87 string16 ChromeAppHostDistribution::GetStatsServerURL() {
88 return L"https://clients4.google.com/firefox/metrics/collect";
89 }
90
91 std::string ChromeAppHostDistribution::GetNetworkStatsServer() const {
92 return chrome_common_net::kEchoTestServerLocation;
93 }
94
95 std::string ChromeAppHostDistribution::GetHttpPipeliningTestServer() const {
96 return chrome_common_net::kPipelineTestServerBaseUrl;
97 }
98
99 string16 ChromeAppHostDistribution::GetUninstallLinkName() {
100 return L"Uninstall Chrome App Host";
101 }
102
103 string16 ChromeAppHostDistribution::GetUninstallRegPath() {
104 return L"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\"
105 L"Google Chrome App Host";
106 }
107
108 string16 ChromeAppHostDistribution::GetVersionKey() {
109 string16 key(google_update::kRegPathClients);
110 key.append(L"\\");
111 key.append(kChromeAppHostGuid);
112 return key;
113 }
114
115 bool ChromeAppHostDistribution::CanSetAsDefault() {
116 return false;
117 }
118
119 bool ChromeAppHostDistribution::CanCreateDesktopShortcuts() {
120 return false;
121 }
122
123 bool ChromeAppHostDistribution::GetDelegateExecuteHandlerData(
124 string16* handler_class_uuid,
125 string16* type_lib_uuid,
126 string16* type_lib_version,
127 string16* interface_uuid) {
128 return false;
129 }
130
131 void ChromeAppHostDistribution::UpdateInstallStatus(bool system_install,
132 installer::ArchiveType archive_type,
133 installer::InstallStatus install_status) {
134 #if defined(GOOGLE_CHROME_BUILD)
135 GoogleUpdateSettings::UpdateInstallStatus(system_install,
136 archive_type, InstallUtil::GetInstallReturnCode(install_status),
137 kChromeAppHostGuid);
138 #endif
139 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698