| 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 802 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 813 switches::kDebugPrint, | 813 switches::kDebugPrint, |
| 814 switches::kDisableAsynchronousSpellChecking, | 814 switches::kDisableAsynchronousSpellChecking, |
| 815 switches::kDisableBundledPpapiFlash, | 815 switches::kDisableBundledPpapiFlash, |
| 816 switches::kDisableExtensionsResourceWhitelist, | 816 switches::kDisableExtensionsResourceWhitelist, |
| 817 switches::kDisableInBrowserThumbnailing, | 817 switches::kDisableInBrowserThumbnailing, |
| 818 switches::kDumpHistogramsOnExit, | 818 switches::kDumpHistogramsOnExit, |
| 819 switches::kEnableBenchmarking, | 819 switches::kEnableBenchmarking, |
| 820 switches::kEnableBundledPpapiFlash, | 820 switches::kEnableBundledPpapiFlash, |
| 821 switches::kEnableCrxlessWebApps, | 821 switches::kEnableCrxlessWebApps, |
| 822 switches::kEnableExperimentalExtensionApis, | 822 switches::kEnableExperimentalExtensionApis, |
| 823 switches::kEnableHighDPIPDFPlugin, |
| 823 switches::kEnableIPCFuzzing, | 824 switches::kEnableIPCFuzzing, |
| 824 switches::kEnableNaCl, | 825 switches::kEnableNaCl, |
| 825 switches::kEnableNaClIPCProxy, | 826 switches::kEnableNaClIPCProxy, |
| 826 switches::kEnablePasswordGeneration, | 827 switches::kEnablePasswordGeneration, |
| 827 switches::kEnableWatchdog, | 828 switches::kEnableWatchdog, |
| 828 switches::kExperimentalSpellcheckerFeatures, | 829 switches::kExperimentalSpellcheckerFeatures, |
| 829 switches::kMemoryProfiling, | 830 switches::kMemoryProfiling, |
| 830 switches::kMessageLoopHistogrammer, | 831 switches::kMessageLoopHistogrammer, |
| 831 switches::kNoJsRandomness, | 832 switches::kNoJsRandomness, |
| 832 switches::kPlaybackMode, | 833 switches::kPlaybackMode, |
| (...skipping 833 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1666 io_thread_application_locale_ = locale; | 1667 io_thread_application_locale_ = locale; |
| 1667 } | 1668 } |
| 1668 | 1669 |
| 1669 void ChromeContentBrowserClient::SetApplicationLocaleOnIOThread( | 1670 void ChromeContentBrowserClient::SetApplicationLocaleOnIOThread( |
| 1670 const std::string& locale) { | 1671 const std::string& locale) { |
| 1671 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); | 1672 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
| 1672 io_thread_application_locale_ = locale; | 1673 io_thread_application_locale_ = locale; |
| 1673 } | 1674 } |
| 1674 | 1675 |
| 1675 } // namespace chrome | 1676 } // namespace chrome |
| OLD | NEW |