| OLD | NEW |
| 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 #include "chrome/browser/chrome_browser_main_android.h" | 5 #include "chrome/browser/chrome_browser_main_android.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/debug/trace_event.h" | 8 #include "base/debug/trace_event.h" |
| 9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
| 10 #include "cc/base/switches.h" | 10 #include "cc/base/switches.h" |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 | 80 |
| 81 CommandLine::ForCurrentProcess()->AppendSwitch( | 81 CommandLine::ForCurrentProcess()->AppendSwitch( |
| 82 cc::switches::kCompositeToMailbox); | 82 cc::switches::kCompositeToMailbox); |
| 83 | 83 |
| 84 ChromeBrowserMainParts::PreEarlyInitialization(); | 84 ChromeBrowserMainParts::PreEarlyInitialization(); |
| 85 } | 85 } |
| 86 | 86 |
| 87 void ChromeBrowserMainPartsAndroid::ShowMissingLocaleMessageBox() { | 87 void ChromeBrowserMainPartsAndroid::ShowMissingLocaleMessageBox() { |
| 88 NOTREACHED(); | 88 NOTREACHED(); |
| 89 } | 89 } |
| 90 | |
| 91 void RecordBreakpadStatusUMA(MetricsService* metrics) { | |
| 92 // TODO: crbug.com/139023 | |
| 93 NOTIMPLEMENTED(); | |
| 94 } | |
| 95 | |
| 96 void WarnAboutMinimumSystemRequirements() { | |
| 97 } | |
| OLD | NEW |