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

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

Issue 10542031: Suffix Chrome's appid on user-level installs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase to r142814 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 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 a class that contains various method related to branding. 5 // This file defines a class that contains various method related to branding.
6 // It provides only default implementations of these methods. Usually to add 6 // It provides only default implementations of these methods. Usually to add
7 // specific branding, we will need to extend this class with a custom 7 // specific branding, we will need to extend this class with a custom
8 // implementation. 8 // implementation.
9 9
10 #include "chrome/installer/util/browser_distribution.h" 10 #include "chrome/installer/util/browser_distribution.h"
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 } 154 }
155 155
156 string16 BrowserDistribution::GetAppShortCutName() { 156 string16 BrowserDistribution::GetAppShortCutName() {
157 return GetBaseAppName(); 157 return GetBaseAppName();
158 } 158 }
159 159
160 string16 BrowserDistribution::GetAlternateApplicationName() { 160 string16 BrowserDistribution::GetAlternateApplicationName() {
161 return L"The Internet"; 161 return L"The Internet";
162 } 162 }
163 163
164 string16 BrowserDistribution::GetBrowserAppId() { 164 string16 BrowserDistribution::GetBaseAppId() {
165 return L"Chromium"; 165 return L"Chromium";
166 } 166 }
167 167
168 string16 BrowserDistribution::GetInstallSubDir() { 168 string16 BrowserDistribution::GetInstallSubDir() {
169 return L"Chromium"; 169 return L"Chromium";
170 } 170 }
171 171
172 string16 BrowserDistribution::GetPublisherName() { 172 string16 BrowserDistribution::GetPublisherName() {
173 return L"Chromium"; 173 return L"Chromium";
174 } 174 }
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 const Version& version, const installer::Product& product, 270 const Version& version, const installer::Product& product,
271 bool system_level) { 271 bool system_level) {
272 } 272 }
273 273
274 274
275 void BrowserDistribution::InactiveUserToastExperiment(int flavor, 275 void BrowserDistribution::InactiveUserToastExperiment(int flavor,
276 const string16& experiment_group, 276 const string16& experiment_group,
277 const installer::Product& installation, 277 const installer::Product& installation,
278 const FilePath& application_path) { 278 const FilePath& application_path) {
279 } 279 }
OLDNEW
« no previous file with comments | « chrome/installer/util/browser_distribution.h ('k') | chrome/installer/util/chromium_binaries_distribution.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698