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 941 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
952 switches::kDisableBundledPpapiFlash, | 952 switches::kDisableBundledPpapiFlash, |
953 switches::kDisableExtensionsResourceWhitelist, | 953 switches::kDisableExtensionsResourceWhitelist, |
954 switches::kDisableScriptedPrintThrottling, | 954 switches::kDisableScriptedPrintThrottling, |
955 switches::kDumpHistogramsOnExit, | 955 switches::kDumpHistogramsOnExit, |
956 switches::kEnableBenchmarking, | 956 switches::kEnableBenchmarking, |
957 switches::kEnableCrxlessWebApps, | 957 switches::kEnableCrxlessWebApps, |
958 switches::kEnableExperimentalExtensionApis, | 958 switches::kEnableExperimentalExtensionApis, |
959 switches::kEnableIPCFuzzing, | 959 switches::kEnableIPCFuzzing, |
960 switches::kEnableInteractiveAutocomplete, | 960 switches::kEnableInteractiveAutocomplete, |
961 switches::kEnableNaCl, | 961 switches::kEnableNaCl, |
962 switches::kEnableNaClSRPCProxy, | |
963 switches::kEnablePasswordGeneration, | 962 switches::kEnablePasswordGeneration, |
964 switches::kEnablePnacl, | 963 switches::kEnablePnacl, |
965 switches::kEnableWatchdog, | 964 switches::kEnableWatchdog, |
966 switches::kMemoryProfiling, | 965 switches::kMemoryProfiling, |
967 switches::kMessageLoopHistogrammer, | 966 switches::kMessageLoopHistogrammer, |
968 switches::kNoJsRandomness, | 967 switches::kNoJsRandomness, |
969 switches::kPerformCrashAnalysis, | 968 switches::kPerformCrashAnalysis, |
970 switches::kPlaybackMode, | 969 switches::kPlaybackMode, |
971 switches::kPpapiFlashArgs, | 970 switches::kPpapiFlashArgs, |
972 switches::kPpapiFlashInProcess, | 971 switches::kPpapiFlashInProcess, |
(...skipping 924 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1897 io_thread_application_locale_ = locale; | 1896 io_thread_application_locale_ = locale; |
1898 } | 1897 } |
1899 | 1898 |
1900 void ChromeContentBrowserClient::SetApplicationLocaleOnIOThread( | 1899 void ChromeContentBrowserClient::SetApplicationLocaleOnIOThread( |
1901 const std::string& locale) { | 1900 const std::string& locale) { |
1902 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); | 1901 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
1903 io_thread_application_locale_ = locale; | 1902 io_thread_application_locale_ = locale; |
1904 } | 1903 } |
1905 | 1904 |
1906 } // namespace chrome | 1905 } // namespace chrome |
OLD | NEW |