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

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

Issue 6672070: Move the remaining files in chrome\common to content\common. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 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
« no previous file with comments | « chrome/browser/browser_main.cc ('k') | chrome/browser/browser_main_mac.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_gtk.h" 5 #include "chrome/browser/browser_main_gtk.h"
6 6
7 #include <gtk/gtk.h> 7 #include <gtk/gtk.h>
8 #include <sys/stat.h> 8 #include <sys/stat.h>
9 #include <sys/types.h> 9 #include <sys/types.h>
10 #include <unistd.h> 10 #include <unistd.h>
11 11
12 #include "base/command_line.h" 12 #include "base/command_line.h"
13 #include "base/debug/debugger.h" 13 #include "base/debug/debugger.h"
14 #include "chrome/browser/browser_list.h" 14 #include "chrome/browser/browser_list.h"
15 #include "chrome/browser/browser_main_win.h" 15 #include "chrome/browser/browser_main_win.h"
16 #include "chrome/browser/metrics/metrics_service.h" 16 #include "chrome/browser/metrics/metrics_service.h"
17 #include "chrome/common/chrome_switches.h" 17 #include "chrome/common/chrome_switches.h"
18 #include "chrome/common/result_codes.h"
19 #include "content/browser/renderer_host/render_sandbox_host_linux.h" 18 #include "content/browser/renderer_host/render_sandbox_host_linux.h"
20 #include "content/browser/zygote_host_linux.h" 19 #include "content/browser/zygote_host_linux.h"
20 #include "content/common/result_codes.h"
21 #include "grit/chromium_strings.h" 21 #include "grit/chromium_strings.h"
22 #include "grit/generated_resources.h" 22 #include "grit/generated_resources.h"
23 #include "ui/base/l10n/l10n_util.h" 23 #include "ui/base/l10n/l10n_util.h"
24 #include "ui/base/resource/resource_bundle.h" 24 #include "ui/base/resource/resource_bundle.h"
25 #include "ui/base/x/x11_util.h" 25 #include "ui/base/x/x11_util.h"
26 #include "ui/base/x/x11_util_internal.h" 26 #include "ui/base/x/x11_util_internal.h"
27 #include "ui/gfx/gtk_util.h" 27 #include "ui/gfx/gtk_util.h"
28 28
29 #if defined(USE_NSS) 29 #if defined(USE_NSS)
30 #include "base/nss_util.h" 30 #include "base/nss_util.h"
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 ui::SetX11ErrorHandlers(BrowserX11ErrorHandler, BrowserX11IOErrorHandler); 181 ui::SetX11ErrorHandlers(BrowserX11ErrorHandler, BrowserX11IOErrorHandler);
182 } 182 }
183 183
184 #if !defined(OS_CHROMEOS) 184 #if !defined(OS_CHROMEOS)
185 // static 185 // static
186 BrowserMainParts* BrowserMainParts::CreateBrowserMainParts( 186 BrowserMainParts* BrowserMainParts::CreateBrowserMainParts(
187 const MainFunctionParams& parameters) { 187 const MainFunctionParams& parameters) {
188 return new BrowserMainPartsGtk(parameters); 188 return new BrowserMainPartsGtk(parameters);
189 } 189 }
190 #endif 190 #endif
OLDNEW
« no previous file with comments | « chrome/browser/browser_main.cc ('k') | chrome/browser/browser_main_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698