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

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

Issue 2931018: Update daily/sxs channel name from "canary" to "canary build". (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 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
« no previous file with comments | « chrome/app/google_chrome_strings.grd ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 // 4 //
5 // This file defines implementation of GoogleChromeSxSDistribution. 5 // This file defines implementation of GoogleChromeSxSDistribution.
6 6
7 #include "chrome/installer/util/google_chrome_sxs_distribution.h" 7 #include "chrome/installer/util/google_chrome_sxs_distribution.h"
8 8
9 #include "installer_util_strings.h" 9 #include "installer_util_strings.h"
10 10
11 namespace { 11 namespace {
12 12
13 const wchar_t kChromeSxSGuid[] = L"{4ea16ac7-fd5a-47c3-875b-dbf4a2008c20}"; 13 const wchar_t kChromeSxSGuid[] = L"{4ea16ac7-fd5a-47c3-875b-dbf4a2008c20}";
14 const wchar_t kChannelName[] = L"canary"; 14 const wchar_t kChannelName[] = L"canary build";
15 const wchar_t kBrowserAppId[] = L"ChromeCanary"; 15 const wchar_t kBrowserAppId[] = L"ChromeCanary";
16 const int kSxSIconIndex = 4; 16 const int kSxSIconIndex = 4;
17 17
18 } // namespace 18 } // namespace
19 19
20 GoogleChromeSxSDistribution::GoogleChromeSxSDistribution() { 20 GoogleChromeSxSDistribution::GoogleChromeSxSDistribution() {
21 GoogleChromeDistribution::set_product_guid(kChromeSxSGuid); 21 GoogleChromeDistribution::set_product_guid(kChromeSxSGuid);
22 } 22 }
23 23
24 std::wstring GoogleChromeSxSDistribution::GetAppShortCutName() { 24 std::wstring GoogleChromeSxSDistribution::GetAppShortCutName() {
(...skipping 29 matching lines...) Expand all
54 } 54 }
55 55
56 bool GoogleChromeSxSDistribution::GetChromeChannel(std::wstring* channel) { 56 bool GoogleChromeSxSDistribution::GetChromeChannel(std::wstring* channel) {
57 *channel = kChannelName; 57 *channel = kChannelName;
58 return true; 58 return true;
59 } 59 }
60 60
61 std::wstring GoogleChromeSxSDistribution::ChannelName() { 61 std::wstring GoogleChromeSxSDistribution::ChannelName() {
62 return kChannelName; 62 return kChannelName;
63 } 63 }
OLDNEW
« no previous file with comments | « chrome/app/google_chrome_strings.grd ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698