| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #ifndef CHROME_BROWSER_EXTENSIONS_API_LANGUAGE_SETTINGS_PRIVATE_LANGUAGE_SETTING
S_PRIVATE_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_LANGUAGE_SETTINGS_PRIVATE_LANGUAGE_SETTING
S_PRIVATE_DELEGATE_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_API_LANGUAGE_SETTINGS_PRIVATE_LANGUAGE_SETTING
S_PRIVATE_DELEGATE_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_API_LANGUAGE_SETTINGS_PRIVATE_LANGUAGE_SETTING
S_PRIVATE_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/scoped_vector.h" | 9 #include "base/memory/scoped_vector.h" |
| 10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
| 11 #include "base/prefs/pref_change_registrar.h" | |
| 12 #include "chrome/browser/spellchecker/spellcheck_custom_dictionary.h" | 11 #include "chrome/browser/spellchecker/spellcheck_custom_dictionary.h" |
| 13 #include "chrome/browser/spellchecker/spellcheck_hunspell_dictionary.h" | 12 #include "chrome/browser/spellchecker/spellcheck_hunspell_dictionary.h" |
| 14 #include "chrome/common/extensions/api/language_settings_private.h" | 13 #include "chrome/common/extensions/api/language_settings_private.h" |
| 15 #include "components/keyed_service/core/keyed_service.h" | 14 #include "components/keyed_service/core/keyed_service.h" |
| 15 #include "components/prefs/pref_change_registrar.h" |
| 16 #include "content/public/browser/notification_observer.h" | 16 #include "content/public/browser/notification_observer.h" |
| 17 #include "content/public/browser/notification_registrar.h" | 17 #include "content/public/browser/notification_registrar.h" |
| 18 #include "extensions/browser/event_router.h" | 18 #include "extensions/browser/event_router.h" |
| 19 | 19 |
| 20 namespace content { | 20 namespace content { |
| 21 class BrowserContext; | 21 class BrowserContext; |
| 22 } | 22 } |
| 23 | 23 |
| 24 namespace extensions { | 24 namespace extensions { |
| 25 | 25 |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 content::NotificationRegistrar notification_registrar_; | 110 content::NotificationRegistrar notification_registrar_; |
| 111 | 111 |
| 112 PrefChangeRegistrar pref_change_registrar_; | 112 PrefChangeRegistrar pref_change_registrar_; |
| 113 | 113 |
| 114 DISALLOW_COPY_AND_ASSIGN(LanguageSettingsPrivateDelegate); | 114 DISALLOW_COPY_AND_ASSIGN(LanguageSettingsPrivateDelegate); |
| 115 }; | 115 }; |
| 116 | 116 |
| 117 } // namespace extensions | 117 } // namespace extensions |
| 118 | 118 |
| 119 #endif // CHROME_BROWSER_EXTENSIONS_API_LANGUAGE_SETTINGS_PRIVATE_LANGUAGE_SETT
INGS_PRIVATE_DELEGATE_H_ | 119 #endif // CHROME_BROWSER_EXTENSIONS_API_LANGUAGE_SETTINGS_PRIVATE_LANGUAGE_SETT
INGS_PRIVATE_DELEGATE_H_ |
| OLD | NEW |