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 803 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
814 switches::kDumpHistogramsOnExit, | 814 switches::kDumpHistogramsOnExit, |
815 switches::kEnableBenchmarking, | 815 switches::kEnableBenchmarking, |
816 switches::kEnableBundledPpapiFlash, | 816 switches::kEnableBundledPpapiFlash, |
817 switches::kEnableCrxlessWebApps, | 817 switches::kEnableCrxlessWebApps, |
818 switches::kEnableExperimentalExtensionApis, | 818 switches::kEnableExperimentalExtensionApis, |
819 switches::kEnableHighDPIPDFPlugin, | 819 switches::kEnableHighDPIPDFPlugin, |
820 switches::kEnableIPCFuzzing, | 820 switches::kEnableIPCFuzzing, |
821 switches::kEnableNaCl, | 821 switches::kEnableNaCl, |
822 switches::kEnableNaClIPCProxy, | 822 switches::kEnableNaClIPCProxy, |
823 switches::kEnablePasswordGeneration, | 823 switches::kEnablePasswordGeneration, |
| 824 switches::kEnablePnacl, |
824 switches::kEnableWatchdog, | 825 switches::kEnableWatchdog, |
825 switches::kExperimentalSpellcheckerFeatures, | 826 switches::kExperimentalSpellcheckerFeatures, |
826 switches::kMemoryProfiling, | 827 switches::kMemoryProfiling, |
827 switches::kMessageLoopHistogrammer, | 828 switches::kMessageLoopHistogrammer, |
828 switches::kNoJsRandomness, | 829 switches::kNoJsRandomness, |
829 switches::kPlaybackMode, | 830 switches::kPlaybackMode, |
830 switches::kPpapiFlashArgs, | 831 switches::kPpapiFlashArgs, |
831 switches::kPpapiFlashInProcess, | 832 switches::kPpapiFlashInProcess, |
832 switches::kPpapiFlashPath, | 833 switches::kPpapiFlashPath, |
833 switches::kPpapiFlashVersion, | 834 switches::kPpapiFlashVersion, |
(...skipping 847 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1681 io_thread_application_locale_ = locale; | 1682 io_thread_application_locale_ = locale; |
1682 } | 1683 } |
1683 | 1684 |
1684 void ChromeContentBrowserClient::SetApplicationLocaleOnIOThread( | 1685 void ChromeContentBrowserClient::SetApplicationLocaleOnIOThread( |
1685 const std::string& locale) { | 1686 const std::string& locale) { |
1686 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); | 1687 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
1687 io_thread_application_locale_ = locale; | 1688 io_thread_application_locale_ = locale; |
1688 } | 1689 } |
1689 | 1690 |
1690 } // namespace chrome | 1691 } // namespace chrome |
OLD | NEW |