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

Side by Side Diff: chrome/installer/util/chromium_binaries_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 declares a class that contains various method related to branding. 5 // This file declares a class that contains various method related to branding.
6 6
7 #include "chrome/installer/util/google_chrome_binaries_distribution.h" 7 #include "chrome/installer/util/google_chrome_binaries_distribution.h"
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 10
(...skipping 20 matching lines...) Expand all
31 31
32 string16 ChromiumBinariesDistribution::GetAppShortCutName() { 32 string16 ChromiumBinariesDistribution::GetAppShortCutName() {
33 return kChromiumBinariesName; 33 return kChromiumBinariesName;
34 } 34 }
35 35
36 string16 ChromiumBinariesDistribution::GetAlternateApplicationName() { 36 string16 ChromiumBinariesDistribution::GetAlternateApplicationName() {
37 NOTREACHED(); 37 NOTREACHED();
38 return string16(); 38 return string16();
39 } 39 }
40 40
41 string16 ChromiumBinariesDistribution::GetBrowserAppId() { 41 string16 ChromiumBinariesDistribution::GetBaseAppId() {
42 NOTREACHED(); 42 NOTREACHED();
43 return string16(); 43 return string16();
44 } 44 }
45 45
46 string16 ChromiumBinariesDistribution::GetInstallSubDir() { 46 string16 ChromiumBinariesDistribution::GetInstallSubDir() {
47 return browser_distribution_->GetInstallSubDir(); 47 return browser_distribution_->GetInstallSubDir();
48 } 48 }
49 49
50 string16 ChromiumBinariesDistribution::GetPublisherName() { 50 string16 ChromiumBinariesDistribution::GetPublisherName() {
51 NOTREACHED(); 51 NOTREACHED();
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 96
97 int ChromiumBinariesDistribution::GetIconIndex() { 97 int ChromiumBinariesDistribution::GetIconIndex() {
98 NOTREACHED(); 98 NOTREACHED();
99 return 0; 99 return 0;
100 } 100 }
101 101
102 bool ChromiumBinariesDistribution::GetChromeChannel(string16* channel) { 102 bool ChromiumBinariesDistribution::GetChromeChannel(string16* channel) {
103 NOTREACHED(); 103 NOTREACHED();
104 return false; 104 return false;
105 } 105 }
OLDNEW
« no previous file with comments | « chrome/installer/util/chromium_binaries_distribution.h ('k') | chrome/installer/util/google_chrome_distribution.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698