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

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

Issue 15255004: Refactor of BrowserDistribution. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rework Created 7 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
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 dummy implementation of several functions from the 5 // This file defines dummy implementation of several functions from the
6 // BrowserDistribution class for Google Chrome. These functions allow 64-bit 6 // BrowserDistribution class for Google Chrome. These functions allow 64-bit
7 // Windows Chrome binary to build successfully. Since this binary is only used 7 // Windows Chrome binary to build successfully. Since this binary is only used
8 // for Native Client support, most of the install/uninstall functionality is not 8 // for Native Client support, most of the install/uninstall functionality is not
9 // necessary there. 9 // necessary there.
10 10
(...skipping 23 matching lines...) Expand all
34 string16 GoogleChromeDistribution::GetAppGuid() { 34 string16 GoogleChromeDistribution::GetAppGuid() {
35 NOTREACHED(); 35 NOTREACHED();
36 return string16(); 36 return string16();
37 } 37 }
38 38
39 string16 GoogleChromeDistribution::GetBaseAppName() { 39 string16 GoogleChromeDistribution::GetBaseAppName() {
40 NOTREACHED(); 40 NOTREACHED();
41 return string16(); 41 return string16();
42 } 42 }
43 43
44 string16 GoogleChromeDistribution::GetAppShortCutName() { 44 string16 GoogleChromeDistribution::GetShortcutName(ShortcutEnum shortcut_enum) {
45 NOTREACHED(); 45 NOTREACHED();
46 return string16(); 46 return string16();
47 } 47 }
48 48
49 string16 GoogleChromeDistribution::GetAlternateApplicationName() { 49 int GoogleChromeDistribution::GetIconIndex(ShortcutEnum shortcut_enum) {
50 NOTREACHED(); 50 NOTREACHED();
51 return string16(); 51 return 0;
52 } 52 }
53 53
54 string16 GoogleChromeDistribution::GetBaseAppId() { 54 string16 GoogleChromeDistribution::GetBaseAppId() {
55 NOTREACHED(); 55 NOTREACHED();
56 return string16(); 56 return string16();
57 } 57 }
58 58
59 string16 GoogleChromeDistribution::GetInstallSubDir() { 59 string16 GoogleChromeDistribution::GetInstallSubDir() {
60 NOTREACHED(); 60 NOTREACHED();
61 return string16(); 61 return string16();
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 140
141 bool GoogleChromeDistribution::ShouldSetExperimentLabels() { 141 bool GoogleChromeDistribution::ShouldSetExperimentLabels() {
142 NOTREACHED(); 142 NOTREACHED();
143 return false; 143 return false;
144 } 144 }
145 145
146 bool GoogleChromeDistribution::HasUserExperiments() { 146 bool GoogleChromeDistribution::HasUserExperiments() {
147 NOTREACHED(); 147 NOTREACHED();
148 return false; 148 return false;
149 } 149 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698