| 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/chromeos/input_method/input_method_delegate_impl.h" | 5 #include "chrome/browser/chromeos/input_method/input_method_delegate_impl.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/threading/sequenced_worker_pool.h" |
| 8 #include "chrome/browser/browser_process.h" | 9 #include "chrome/browser/browser_process.h" |
| 9 #include "chrome/browser/prefs/pref_service.h" | 10 #include "chrome/browser/prefs/pref_service.h" |
| 10 #include "chrome/common/pref_names.h" | 11 #include "chrome/common/pref_names.h" |
| 12 #include "content/public/browser/browser_thread.h" |
| 11 | 13 |
| 12 namespace chromeos { | 14 namespace chromeos { |
| 13 namespace input_method { | 15 namespace input_method { |
| 14 | 16 |
| 15 InputMethodDelegateImpl::InputMethodDelegateImpl() {} | 17 InputMethodDelegateImpl::InputMethodDelegateImpl() {} |
| 16 | 18 |
| 17 std::string InputMethodDelegateImpl::GetHardwareKeyboardLayout() const { | 19 std::string InputMethodDelegateImpl::GetHardwareKeyboardLayout() const { |
| 18 if (g_browser_process) { | 20 if (g_browser_process) { |
| 19 PrefServiceBase* local_state = g_browser_process->local_state(); | 21 PrefServiceBase* local_state = g_browser_process->local_state(); |
| 20 if (local_state) | 22 if (local_state) |
| 21 return local_state->GetString(prefs::kHardwareKeyboardLayout); | 23 return local_state->GetString(prefs::kHardwareKeyboardLayout); |
| 22 } | 24 } |
| 23 // This shouldn't happen but just in case. | 25 // This shouldn't happen but just in case. |
| 24 DVLOG(1) << "Local state is not yet ready."; | 26 DVLOG(1) << "Local state is not yet ready."; |
| 25 return std::string(); | 27 return std::string(); |
| 26 } | 28 } |
| 27 | 29 |
| 28 std::string InputMethodDelegateImpl::GetActiveLocale() const { | 30 std::string InputMethodDelegateImpl::GetActiveLocale() const { |
| 29 if (g_browser_process) | 31 if (g_browser_process) |
| 30 return g_browser_process->GetApplicationLocale(); | 32 return g_browser_process->GetApplicationLocale(); |
| 31 | 33 |
| 32 NOTREACHED(); | 34 NOTREACHED(); |
| 33 return std::string(); | 35 return std::string(); |
| 34 } | 36 } |
| 35 | 37 |
| 38 scoped_refptr<base::SequencedTaskRunner> |
| 39 InputMethodDelegateImpl::GetDefaultTaskRunner() const { |
| 40 return content::BrowserThread::GetMessageLoopProxyForThread( |
| 41 content::BrowserThread::UI); |
| 42 } |
| 43 |
| 44 scoped_refptr<base::SequencedTaskRunner> |
| 45 InputMethodDelegateImpl::GetWorkerTaskRunner() const { |
| 46 scoped_refptr<base::SequencedWorkerPool> worker_pool( |
| 47 content::BrowserThread::GetBlockingPool()); |
| 48 |
| 49 return worker_pool->GetSequencedTaskRunner(worker_pool->GetSequenceToken()); |
| 50 } |
| 51 |
| 36 } // namespace input_method | 52 } // namespace input_method |
| 37 } // namespace chromeos | 53 } // namespace chromeos |
| OLD | NEW |