| Index: chrome/browser/chromeos/input_method/xkeyboard.cc
|
| diff --git a/chrome/browser/chromeos/input_method/xkeyboard.cc b/chrome/browser/chromeos/input_method/xkeyboard.cc
|
| index 4033be2dbef811b0f66c6f816b089d83f4d45259..361246ab634d307505c72b08e7474143a03b5fb6 100644
|
| --- a/chrome/browser/chromeos/input_method/xkeyboard.cc
|
| +++ b/chrome/browser/chromeos/input_method/xkeyboard.cc
|
| @@ -10,6 +10,7 @@
|
| #include <set>
|
| #include <utility>
|
|
|
| +#include "base/chromeos/chromeos_version.h"
|
| #include "base/logging.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/process_util.h"
|
| @@ -17,7 +18,6 @@
|
| #include "base/stringprintf.h"
|
| #include "chrome/browser/chromeos/input_method/input_method_util.h"
|
| #include "chrome/browser/chromeos/input_method/xkeyboard_data.h"
|
| -#include "chrome/browser/chromeos/system/runtime_environment.h"
|
| #include "content/public/browser/browser_thread.h"
|
| #include "ui/base/x/x11_util.h"
|
|
|
| @@ -127,8 +127,7 @@ class XKeyboardImpl : public XKeyboard {
|
| };
|
|
|
| XKeyboardImpl::XKeyboardImpl(const InputMethodUtil& util)
|
| - : is_running_on_chrome_os_(
|
| - system::runtime_environment::IsRunningOnChromeOS()) {
|
| + : is_running_on_chrome_os_(base::chromeos::IsRunningOnChromeOS()) {
|
| num_lock_mask_ = GetNumLockMask();
|
|
|
| #if defined(USE_AURA)
|
|
|