| 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 927 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 938 switches::kDisableBundledPpapiFlash, | 938 switches::kDisableBundledPpapiFlash, |
| 939 switches::kDisableExtensionsResourceWhitelist, | 939 switches::kDisableExtensionsResourceWhitelist, |
| 940 switches::kDisableScriptedPrintThrottling, | 940 switches::kDisableScriptedPrintThrottling, |
| 941 switches::kDumpHistogramsOnExit, | 941 switches::kDumpHistogramsOnExit, |
| 942 switches::kEnableBenchmarking, | 942 switches::kEnableBenchmarking, |
| 943 switches::kEnableBundledPpapiFlash, | 943 switches::kEnableBundledPpapiFlash, |
| 944 switches::kEnableChromeStyleDialogs, | 944 switches::kEnableChromeStyleDialogs, |
| 945 switches::kEnableCrxlessWebApps, | 945 switches::kEnableCrxlessWebApps, |
| 946 switches::kEnableExperimentalExtensionApis, | 946 switches::kEnableExperimentalExtensionApis, |
| 947 switches::kEnableIPCFuzzing, | 947 switches::kEnableIPCFuzzing, |
| 948 switches::kEnableInteractiveAutocomplete, |
| 948 switches::kEnableNaCl, | 949 switches::kEnableNaCl, |
| 949 switches::kEnableNaClIPCProxy, | 950 switches::kEnableNaClIPCProxy, |
| 950 switches::kEnablePasswordGeneration, | 951 switches::kEnablePasswordGeneration, |
| 951 switches::kEnablePnacl, | 952 switches::kEnablePnacl, |
| 952 switches::kEnableWatchdog, | 953 switches::kEnableWatchdog, |
| 953 switches::kMemoryProfiling, | 954 switches::kMemoryProfiling, |
| 954 switches::kMessageLoopHistogrammer, | 955 switches::kMessageLoopHistogrammer, |
| 955 switches::kNoJsRandomness, | 956 switches::kNoJsRandomness, |
| 956 switches::kPerformCrashAnalysis, | 957 switches::kPerformCrashAnalysis, |
| 957 switches::kPlaybackMode, | 958 switches::kPlaybackMode, |
| (...skipping 953 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1911 io_thread_application_locale_ = locale; | 1912 io_thread_application_locale_ = locale; |
| 1912 } | 1913 } |
| 1913 | 1914 |
| 1914 void ChromeContentBrowserClient::SetApplicationLocaleOnIOThread( | 1915 void ChromeContentBrowserClient::SetApplicationLocaleOnIOThread( |
| 1915 const std::string& locale) { | 1916 const std::string& locale) { |
| 1916 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); | 1917 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
| 1917 io_thread_application_locale_ = locale; | 1918 io_thread_application_locale_ = locale; |
| 1918 } | 1919 } |
| 1919 | 1920 |
| 1920 } // namespace chrome | 1921 } // namespace chrome |
| OLD | NEW |