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

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

Issue 2764963002: Move ProgID methods from BrowserDistribution into install_static. (Closed)
Patch Set: huangs comments Created 3 years, 9 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 } 45 }
46 46
47 base::string16 GoogleChromeDistribution::GetShortcutName() { 47 base::string16 GoogleChromeDistribution::GetShortcutName() {
48 return base::string16(); 48 return base::string16();
49 } 49 }
50 50
51 int GoogleChromeDistribution::GetIconIndex() { 51 int GoogleChromeDistribution::GetIconIndex() {
52 return 0; 52 return 0;
53 } 53 }
54 54
55 base::string16 GoogleChromeDistribution::GetBrowserProgIdPrefix() {
56 return base::string16();
57 }
58
59 base::string16 GoogleChromeDistribution::GetBrowserProgIdDesc() {
60 return base::string16();
61 }
62
63 base::string16 GoogleChromeDistribution::GetPublisherName() { 55 base::string16 GoogleChromeDistribution::GetPublisherName() {
64 return base::string16(); 56 return base::string16();
65 } 57 }
66 58
67 base::string16 GoogleChromeDistribution::GetAppDescription() { 59 base::string16 GoogleChromeDistribution::GetAppDescription() {
68 return base::string16(); 60 return base::string16();
69 } 61 }
70 62
71 std::string GoogleChromeDistribution::GetSafeBrowsingName() { 63 std::string GoogleChromeDistribution::GetSafeBrowsingName() {
72 return std::string(); 64 return std::string();
(...skipping 20 matching lines...) Expand all
93 installer::InstallStatus install_status) { 85 installer::InstallStatus install_status) {
94 } 86 }
95 87
96 bool GoogleChromeDistribution::ShouldSetExperimentLabels() { 88 bool GoogleChromeDistribution::ShouldSetExperimentLabels() {
97 return false; 89 return false;
98 } 90 }
99 91
100 bool GoogleChromeDistribution::HasUserExperiments() { 92 bool GoogleChromeDistribution::HasUserExperiments() {
101 return false; 93 return false;
102 } 94 }
OLDNEW
« no previous file with comments | « chrome/installer/util/google_chrome_distribution.cc ('k') | chrome/installer/util/google_chrome_sxs_distribution.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698