diff options
author | simon.hong81@gmail.com <simon.hong81@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-18 03:37:34 +0000 |
---|---|---|
committer | simon.hong81@gmail.com <simon.hong81@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-18 03:37:34 +0000 |
commit | 38d0b2d49f614e30ee9d6c9ce3c1b1c66fab3dfa (patch) | |
tree | a01a2e20f93c04c49f110427d6735de3e868f2bf | |
parent | 4fe50ab262f7ce7a87048dabb6e5c01d0ea3fc9e (diff) | |
download | chromium_src-38d0b2d49f614e30ee9d6c9ce3c1b1c66fab3dfa.zip chromium_src-38d0b2d49f614e30ee9d6c9ce3c1b1c66fab3dfa.tar.gz chromium_src-38d0b2d49f614e30ee9d6c9ce3c1b1c66fab3dfa.tar.bz2 |
In the BrowserMainLoop::InitializeToolkit(),
Change gfx::GtkInitFromCommandLine's parameter
from parameters_.command_line to parsed_command_line_.
Contributed by simon.hong81@gmail.com
BUG=none
TEST=compiles
Review URL: http://codereview.chromium.org/9241021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@118030 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | content/browser/browser_main_loop.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/browser/browser_main_loop.cc b/content/browser/browser_main_loop.cc index a67f081..a8f0b74 100644 --- a/content/browser/browser_main_loop.cc +++ b/content/browser/browser_main_loop.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -539,7 +539,7 @@ void BrowserMainLoop::InitializeToolkit() { #endif #if !defined(USE_AURA) - gfx::GtkInitFromCommandLine(parameters_.command_line); + gfx::GtkInitFromCommandLine(parsed_command_line_); #endif SetUpGLibLogHandler(); |