| OLD | NEW | 
|---|
|  | (Empty) | 
| 1 // Copyright (c) 2008 The Chromium Authors. All rights reserved. |  | 
| 2 // Use of this source code is governed by a BSD-style license that can be |  | 
| 3 // found in the LICENSE file. |  | 
| 4 |  | 
| 5 #include "base/command_line.h" |  | 
| 6 #include "chrome/app/result_codes.h" |  | 
| 7 #include "chrome/browser/browser_main_win.h" |  | 
| 8 |  | 
| 9 // From browser_main_win.h, stubs until we figure out the right thing... |  | 
| 10 |  | 
| 11 int DoUninstallTasks() { |  | 
| 12   return ResultCodes::NORMAL_EXIT; |  | 
| 13 } |  | 
| 14 |  | 
| 15 bool DoUpgradeTasks(const CommandLine& command_line) { |  | 
| 16   return ResultCodes::NORMAL_EXIT; |  | 
| 17 } |  | 
| 18 |  | 
| 19 bool CheckForWin2000() { |  | 
| 20   return false; |  | 
| 21 } |  | 
| 22 |  | 
| 23 int HandleIconsCommands(const CommandLine &parsed_command_line) { |  | 
| 24   return 0; |  | 
| 25 } |  | 
| 26 |  | 
| 27 bool CheckMachineLevelInstall() { |  | 
| 28   return false; |  | 
| 29 } |  | 
| 30 |  | 
| 31 void PrepareRestartOnCrashEnviroment(const CommandLine &parsed_command_line) { |  | 
| 32 } |  | 
| 33 |  | 
| 34 void RecordBreakpadStatusUMA(MetricsService* metrics) { |  | 
| 35 } |  | 
| OLD | NEW | 
|---|