| 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 "chrome/browser/chrome_content_browser_client.h" | 5 #include "chrome/browser/chrome_content_browser_client.h" |
| 6 | 6 |
| 7 #include <set> | 7 #include <set> |
| 8 #include <utility> | 8 #include <utility> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 1137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1148 switches::kAllowLegacyExtensionManifests, | 1148 switches::kAllowLegacyExtensionManifests, |
| 1149 switches::kAllowScriptingGallery, | 1149 switches::kAllowScriptingGallery, |
| 1150 switches::kAppsCheckoutURL, | 1150 switches::kAppsCheckoutURL, |
| 1151 switches::kAppsGalleryURL, | 1151 switches::kAppsGalleryURL, |
| 1152 switches::kCloudPrintServiceURL, | 1152 switches::kCloudPrintServiceURL, |
| 1153 switches::kDebugPrint, | 1153 switches::kDebugPrint, |
| 1154 switches::kDisableBundledPpapiFlash, | 1154 switches::kDisableBundledPpapiFlash, |
| 1155 switches::kDisableExtensionsResourceWhitelist, | 1155 switches::kDisableExtensionsResourceWhitelist, |
| 1156 switches::kDisableScriptedPrintThrottling, | 1156 switches::kDisableScriptedPrintThrottling, |
| 1157 switches::kDumpHistogramsOnExit, | 1157 switches::kDumpHistogramsOnExit, |
| 1158 switches::kEnableAdview, |
| 1159 switches::kEnableAdviewSrcAttribute, |
| 1158 switches::kEnableBenchmarking, | 1160 switches::kEnableBenchmarking, |
| 1159 switches::kEnableCrxlessWebApps, | 1161 switches::kEnableCrxlessWebApps, |
| 1160 switches::kEnableExperimentalExtensionApis, | 1162 switches::kEnableExperimentalExtensionApis, |
| 1161 switches::kEnableExperimentalFormFilling, | 1163 switches::kEnableExperimentalFormFilling, |
| 1162 switches::kEnableIPCFuzzing, | 1164 switches::kEnableIPCFuzzing, |
| 1163 switches::kEnableInteractiveAutocomplete, | 1165 switches::kEnableInteractiveAutocomplete, |
| 1164 switches::kEnableNaCl, | 1166 switches::kEnableNaCl, |
| 1165 switches::kEnableNetBenchmarking, | 1167 switches::kEnableNetBenchmarking, |
| 1166 switches::kEnablePasswordGeneration, | 1168 switches::kEnablePasswordGeneration, |
| 1167 switches::kEnablePnacl, | 1169 switches::kEnablePnacl, |
| (...skipping 953 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2121 io_thread_application_locale_ = locale; | 2123 io_thread_application_locale_ = locale; |
| 2122 } | 2124 } |
| 2123 | 2125 |
| 2124 void ChromeContentBrowserClient::SetApplicationLocaleOnIOThread( | 2126 void ChromeContentBrowserClient::SetApplicationLocaleOnIOThread( |
| 2125 const std::string& locale) { | 2127 const std::string& locale) { |
| 2126 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); | 2128 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
| 2127 io_thread_application_locale_ = locale; | 2129 io_thread_application_locale_ = locale; |
| 2128 } | 2130 } |
| 2129 | 2131 |
| 2130 } // namespace chrome | 2132 } // namespace chrome |
| OLD | NEW |