diff options
author | simon.hong81@gmail.com <simon.hong81@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-07 07:10:31 +0000 |
---|---|---|
committer | simon.hong81@gmail.com <simon.hong81@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-07 07:10:31 +0000 |
commit | c40f3c2b605f7fe955a157a1f594bc73096daffa (patch) | |
tree | 9b8f29cb47eeae4e6cfb3f9325aa3de615319130 /content | |
parent | c7e806076087077b42736ca05463b4c50014c6f8 (diff) | |
download | chromium_src-c40f3c2b605f7fe955a157a1f594bc73096daffa.zip chromium_src-c40f3c2b605f7fe955a157a1f594bc73096daffa.tar.gz chromium_src-c40f3c2b605f7fe955a157a1f594bc73096daffa.tar.bz2 |
Remove duplicated setlocale(LC_ALL, "")
in the BrowserMainLoop::InitializeToolkit().
Already this is called in ContentMain().
BUG=none
TEST=compiles
Review URL: http://codereview.chromium.org/9360025
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131264 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content')
-rw-r--r-- | content/browser/browser_main_loop.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/content/browser/browser_main_loop.cc b/content/browser/browser_main_loop.cc index 95f8f25..b716f78 100644 --- a/content/browser/browser_main_loop.cc +++ b/content/browser/browser_main_loop.cc @@ -620,10 +620,6 @@ void BrowserMainLoop::InitializeToolkit() { // requirement for gconf. g_type_init(); -#if defined(USE_AURA) - setlocale(LC_ALL, ""); -#endif - #if !defined(USE_AURA) gfx::GtkInitFromCommandLine(parsed_command_line_); #endif |