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 798 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
809 switches::kDebugPrint, | 809 switches::kDebugPrint, |
810 switches::kDisableAsynchronousSpellChecking, | 810 switches::kDisableAsynchronousSpellChecking, |
811 switches::kDisableBundledPpapiFlash, | 811 switches::kDisableBundledPpapiFlash, |
812 switches::kDisableExtensionsResourceWhitelist, | 812 switches::kDisableExtensionsResourceWhitelist, |
813 switches::kDisableInBrowserThumbnailing, | 813 switches::kDisableInBrowserThumbnailing, |
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::kEnableFramelessConstrainedDialogs, |
819 switches::kEnableHighDPIPDFPlugin, | 820 switches::kEnableHighDPIPDFPlugin, |
820 switches::kEnableIPCFuzzing, | 821 switches::kEnableIPCFuzzing, |
821 switches::kEnableNaCl, | 822 switches::kEnableNaCl, |
822 switches::kEnableNaClIPCProxy, | 823 switches::kEnableNaClIPCProxy, |
823 switches::kEnablePasswordGeneration, | 824 switches::kEnablePasswordGeneration, |
824 switches::kEnablePnacl, | 825 switches::kEnablePnacl, |
825 switches::kEnableWatchdog, | 826 switches::kEnableWatchdog, |
826 switches::kExperimentalSpellcheckerFeatures, | 827 switches::kExperimentalSpellcheckerFeatures, |
827 switches::kMemoryProfiling, | 828 switches::kMemoryProfiling, |
828 switches::kMessageLoopHistogrammer, | 829 switches::kMessageLoopHistogrammer, |
(...skipping 853 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1682 io_thread_application_locale_ = locale; | 1683 io_thread_application_locale_ = locale; |
1683 } | 1684 } |
1684 | 1685 |
1685 void ChromeContentBrowserClient::SetApplicationLocaleOnIOThread( | 1686 void ChromeContentBrowserClient::SetApplicationLocaleOnIOThread( |
1686 const std::string& locale) { | 1687 const std::string& locale) { |
1687 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); | 1688 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
1688 io_thread_application_locale_ = locale; | 1689 io_thread_application_locale_ = locale; |
1689 } | 1690 } |
1690 | 1691 |
1691 } // namespace chrome | 1692 } // namespace chrome |
OLD | NEW |