diff options
Diffstat (limited to 'chrome/browser/browser_main_gtk.cc')
-rw-r--r-- | chrome/browser/browser_main_gtk.cc | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/chrome/browser/browser_main_gtk.cc b/chrome/browser/browser_main_gtk.cc index 794fa30..6bfa6de 100644 --- a/chrome/browser/browser_main_gtk.cc +++ b/chrome/browser/browser_main_gtk.cc @@ -2,10 +2,26 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +#include "chrome/browser/browser_main.h" + #include "base/command_line.h" #include "chrome/browser/browser_main_win.h" #include "chrome/common/result_codes.h" +namespace Platform { + +void WillInitializeMainMessageLoop(const MainFunctionParams& parameters) { +} + +void WillTerminate() { +} + +void RecordBreakpadStatusUMA(MetricsService* metrics) { + // TODO(port): http://crbug.com/21732 +} + +} // namespace Platform + // From browser_main_win.h, stubs until we figure out the right thing... int DoUninstallTasks(bool chrome_still_running) { @@ -30,6 +46,3 @@ bool CheckMachineLevelInstall() { void PrepareRestartOnCrashEnviroment(const CommandLine &parsed_command_line) { } - -void RecordBreakpadStatusUMA(MetricsService* metrics) { -} |