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

Unified Diff: chrome/app/chrome_dll_main.cc

Issue 39172: Linux: don't call gtk_init in the renderer process. (Closed)
Patch Set: ... 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/chrome_dll_main.cc
diff --git a/chrome/app/chrome_dll_main.cc b/chrome/app/chrome_dll_main.cc
index ef869706f71cb6a7c580521a41506804840e0388..6978e7bb5d4f80dc6461ace75478df4ff56e2f10 100644
--- a/chrome/app/chrome_dll_main.cc
+++ b/chrome/app/chrome_dll_main.cc
@@ -245,14 +245,6 @@ int ChromeMain(int argc, const char** argv) {
// its main event loop to get rid of the cruft.
base::ScopedNSAutoreleasePool autorelease_pool;
-#if defined(OS_LINUX)
- // gtk_init() can change |argc| and |argv| and thus must be called before
- // CommandLine::Init().
- // TODO(estade): we should make a copy of |argv| instead of const_casting
- // it.
- gtk_init(&argc, const_cast<char***>(&argv));
-#endif
-
// Initialize the command line.
#if defined(OS_WIN)
CommandLine::Init(0, NULL);
@@ -378,6 +370,11 @@ int ChromeMain(int argc, const char** argv) {
rv = WorkerMain(main_params);
#endif
} else if (process_type.empty()) {
+#if defined(OS_LINUX)
+ // gtk_init() can change |argc| and |argv|, but nobody else uses them.
+ gtk_init(&argc, const_cast<char***>(&argv));
+#endif
+
ScopedOleInitializer ole_initializer;
rv = BrowserMain(main_params);
} else {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698