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

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

Issue 57173002: Adds the concept of a 'safe mode' hotkey start (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 1 month 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
« no previous file with comments | « chrome/installer/util/google_chrome_distribution.cc ('k') | chrome/installer/util/shell_util.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 string16* handler_class_uuid) { 135 string16* handler_class_uuid) {
136 NOTREACHED(); 136 NOTREACHED();
137 return false; 137 return false;
138 } 138 }
139 139
140 bool GoogleChromeDistribution::AppHostIsSupported() { 140 bool GoogleChromeDistribution::AppHostIsSupported() {
141 NOTREACHED(); 141 NOTREACHED();
142 return false; 142 return false;
143 } 143 }
144 144
145 uint32 GoogleChromeDistribution::GetSafeModeHotkey() {
146 return 0;
147 }
148
145 void GoogleChromeDistribution::UpdateInstallStatus(bool system_install, 149 void GoogleChromeDistribution::UpdateInstallStatus(bool system_install,
146 installer::ArchiveType archive_type, 150 installer::ArchiveType archive_type,
147 installer::InstallStatus install_status) { 151 installer::InstallStatus install_status) {
148 NOTREACHED(); 152 NOTREACHED();
149 } 153 }
150 154
151 bool GoogleChromeDistribution::ShouldSetExperimentLabels() { 155 bool GoogleChromeDistribution::ShouldSetExperimentLabels() {
152 NOTREACHED(); 156 NOTREACHED();
153 return false; 157 return false;
154 } 158 }
155 159
156 bool GoogleChromeDistribution::HasUserExperiments() { 160 bool GoogleChromeDistribution::HasUserExperiments() {
157 NOTREACHED(); 161 NOTREACHED();
158 return false; 162 return false;
159 } 163 }
OLDNEW
« no previous file with comments | « chrome/installer/util/google_chrome_distribution.cc ('k') | chrome/installer/util/shell_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698