OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "ash/shell/content_client/shell_main_delegate.h" | 5 #include "ash/shell/content_client/shell_main_delegate.h" |
6 | 6 |
7 #include "ash/shell/content_client/shell_content_browser_client.h" | 7 #include "ash/shell/content_client/shell_content_browser_client.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 #include "content/public/common/content_switches.h" | 9 #include "content/public/common/content_switches.h" |
10 #include "ui/base/resource/resource_bundle.h" | 10 #include "ui/base/resource/resource_bundle.h" |
(...skipping 20 matching lines...) Expand all Loading... |
31 void ShellMainDelegate::PreSandboxStartup() { | 31 void ShellMainDelegate::PreSandboxStartup() { |
32 InitializeResourceBundle(); | 32 InitializeResourceBundle(); |
33 } | 33 } |
34 | 34 |
35 content::ContentBrowserClient* ShellMainDelegate::CreateContentBrowserClient() { | 35 content::ContentBrowserClient* ShellMainDelegate::CreateContentBrowserClient() { |
36 browser_client_.reset(new ShellContentBrowserClient); | 36 browser_client_.reset(new ShellContentBrowserClient); |
37 return browser_client_.get(); | 37 return browser_client_.get(); |
38 } | 38 } |
39 | 39 |
40 void ShellMainDelegate::InitializeResourceBundle() { | 40 void ShellMainDelegate::InitializeResourceBundle() { |
41 ui::ResourceBundle::InitSharedInstanceWithLocale("en-US", NULL); | 41 ui::ResourceBundle::InitSharedInstanceWithLocale( |
| 42 "en-US", NULL, ui::ResourceBundle::LOAD_COMMON_RESOURCES); |
42 } | 43 } |
43 | 44 |
44 } // namespace shell | 45 } // namespace shell |
45 } // namespace ash | 46 } // namespace ash |
OLD | NEW |