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

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

Issue 21176: Porting the toolbar to GTK. (Closed)
Patch Set: Move into gtk/ folder at Ben's request. Created 11 years, 10 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
« no previous file with comments | « chrome/browser/browser.scons ('k') | chrome/browser/browser_window_factory_gtk.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « chrome/browser/browser.scons ('k') | chrome/browser/browser_window_factory_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698