| OLD | NEW |
| 1 // Copyright (c) 2008 The Chromium Authors. All rights reserved. | 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 | 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 #include "chrome/browser/browser_main.h" | 5 #include "chrome/browser/browser_main.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "chrome/browser/browser_main_win.h" | 8 #include "chrome/browser/browser_main_win.h" |
| 9 #include "chrome/common/result_codes.h" | 9 #include "chrome/common/result_codes.h" |
| 10 | 10 |
| 11 namespace Platform { | 11 namespace Platform { |
| 12 | 12 |
| 13 void WillInitializeMainMessageLoop(const MainFunctionParams& parameters) { | 13 void WillInitializeMainMessageLoop(const MainFunctionParams& parameters) { |
| 14 } | 14 } |
| 15 | 15 |
| 16 void WillTerminate() { | 16 void DidEndMainMessageLoop() { |
| 17 } | 17 } |
| 18 | 18 |
| 19 void RecordBreakpadStatusUMA(MetricsService* metrics) { | 19 void RecordBreakpadStatusUMA(MetricsService* metrics) { |
| 20 // TODO(port): http://crbug.com/21732 | 20 // TODO(port): http://crbug.com/21732 |
| 21 } | 21 } |
| 22 | 22 |
| 23 } // namespace Platform | 23 } // namespace Platform |
| 24 | 24 |
| 25 // From browser_main_win.h, stubs until we figure out the right thing... | 25 // From browser_main_win.h, stubs until we figure out the right thing... |
| 26 | 26 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 39 int HandleIconsCommands(const CommandLine &parsed_command_line) { | 39 int HandleIconsCommands(const CommandLine &parsed_command_line) { |
| 40 return 0; | 40 return 0; |
| 41 } | 41 } |
| 42 | 42 |
| 43 bool CheckMachineLevelInstall() { | 43 bool CheckMachineLevelInstall() { |
| 44 return false; | 44 return false; |
| 45 } | 45 } |
| 46 | 46 |
| 47 void PrepareRestartOnCrashEnviroment(const CommandLine &parsed_command_line) { | 47 void PrepareRestartOnCrashEnviroment(const CommandLine &parsed_command_line) { |
| 48 } | 48 } |
| OLD | NEW |