| Index: chrome/browser/chromeos/preferences.h
|
| diff --git a/chrome/browser/chromeos/preferences.h b/chrome/browser/chromeos/preferences.h
|
| index ab6fd3cc1af5a185ea52dadc5a3fab0f8fd1173f..941974ea85ad8e7cde999224cef9c6c058599209 100644
|
| --- a/chrome/browser/chromeos/preferences.h
|
| +++ b/chrome/browser/chromeos/preferences.h
|
| @@ -6,10 +6,10 @@
|
| #define CHROME_BROWSER_CHROMEOS_PREFERENCES_H_
|
|
|
| #include <string>
|
| -#include <vector>
|
|
|
| #include "ash/shell_observer.h"
|
| #include "base/compiler_specific.h"
|
| +#include "base/memory/weak_ptr.h"
|
| #include "base/prefs/pref_member.h"
|
| #include "chrome/browser/chromeos/language_preferences.h"
|
| #include "chrome/browser/prefs/pref_service_syncable_observer.h"
|
| @@ -30,6 +30,10 @@ namespace chromeos {
|
|
|
| class User;
|
|
|
| +namespace {
|
| +class InputMethodSyncer;
|
| +}
|
| +
|
| namespace input_method {
|
| class InputMethodManager;
|
| }
|
| @@ -149,6 +153,8 @@ class Preferences : public PrefServiceSyncableObserver,
|
| // Input Methods state for this user.
|
| scoped_refptr<input_method::InputMethodManager::State> ime_state_;
|
|
|
| + scoped_ptr<InputMethodSyncer> input_method_syncer_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(Preferences);
|
| };
|
|
|
|
|