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

Side by Side Diff: chrome/installer/util/browser_distribution.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
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 a class that contains various method related to branding. 5 // This file defines a class that contains various method related to branding.
6 // It provides only default implementations of these methods. Usually to add 6 // It provides only default implementations of these methods. Usually to add
7 // specific branding, we will need to extend this class with a custom 7 // specific branding, we will need to extend this class with a custom
8 // implementation. 8 // implementation.
9 9
10 #include "chrome/installer/util/browser_distribution.h" 10 #include "chrome/installer/util/browser_distribution.h"
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 291
292 void BrowserDistribution::UpdateInstallStatus(bool system_install, 292 void BrowserDistribution::UpdateInstallStatus(bool system_install,
293 installer::ArchiveType archive_type, 293 installer::ArchiveType archive_type,
294 installer::InstallStatus install_status) { 294 installer::InstallStatus install_status) {
295 } 295 }
296 296
297 bool BrowserDistribution::ShouldSetExperimentLabels() { 297 bool BrowserDistribution::ShouldSetExperimentLabels() {
298 return false; 298 return false;
299 } 299 }
300 300
301 uint32 BrowserDistribution::GetSafeModeHotkey() {
302 return 0;
303 }
304
301 bool BrowserDistribution::HasUserExperiments() { 305 bool BrowserDistribution::HasUserExperiments() {
302 return false; 306 return false;
303 } 307 }
OLDNEW
« no previous file with comments | « chrome/installer/util/browser_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