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

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

Issue 13864015: Move app launcher and chrome apps shortcut strings into the installer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@migrate_app_id_fix
Patch Set: rebase, move app launcher and chrome app strings into the installer Created 7 years, 7 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
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::GetAppListShortcutName() {
42 NOTREACHED();
43 return string16();
44 }
45
46 string16 ChromiumBinariesDistribution::GetAppShortcutsSubdirName() {
47 NOTREACHED();
48 return string16();
49 }
50
41 string16 ChromiumBinariesDistribution::GetBaseAppId() { 51 string16 ChromiumBinariesDistribution::GetBaseAppId() {
42 NOTREACHED(); 52 NOTREACHED();
43 return string16(); 53 return string16();
44 } 54 }
45 55
46 string16 ChromiumBinariesDistribution::GetInstallSubDir() { 56 string16 ChromiumBinariesDistribution::GetInstallSubDir() {
47 return browser_distribution_->GetInstallSubDir(); 57 return browser_distribution_->GetInstallSubDir();
48 } 58 }
49 59
50 string16 ChromiumBinariesDistribution::GetPublisherName() { 60 string16 ChromiumBinariesDistribution::GetPublisherName() {
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 110
101 bool ChromiumBinariesDistribution::GetChromeChannel(string16* channel) { 111 bool ChromiumBinariesDistribution::GetChromeChannel(string16* channel) {
102 NOTREACHED(); 112 NOTREACHED();
103 return false; 113 return false;
104 } 114 }
105 115
106 bool ChromiumBinariesDistribution::GetCommandExecuteImplClsid( 116 bool ChromiumBinariesDistribution::GetCommandExecuteImplClsid(
107 string16* handler_class_uuid) { 117 string16* handler_class_uuid) {
108 return false; 118 return false;
109 } 119 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698