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

Side by Side Diff: chrome/browser/chrome_browser_main_android.cc

Issue 18967002: Small cleanup for ChromeBrowserMain: (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 5 months 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 #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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698