| 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_SETTINGS_PRIVATE_SETTINGS_PRIVATE_DELEGATE
_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_SETTINGS_PRIVATE_SETTINGS_PRIVATE_DELEGATE
_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_API_SETTINGS_PRIVATE_SETTINGS_PRIVATE_DELEGATE
_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_API_SETTINGS_PRIVATE_SETTINGS_PRIVATE_DELEGATE
_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/callback.h" | 11 #include "base/callback.h" |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 14 #include "chrome/browser/extensions/api/settings_private/prefs_util.h" |
| 14 #include "chrome/common/extensions/api/settings_private.h" | 15 #include "chrome/common/extensions/api/settings_private.h" |
| 15 #include "components/keyed_service/core/keyed_service.h" | 16 #include "components/keyed_service/core/keyed_service.h" |
| 16 #include "extensions/browser/extension_function.h" | 17 #include "extensions/browser/extension_function.h" |
| 17 | 18 |
| 18 class Profile; | 19 class Profile; |
| 19 | 20 |
| 20 namespace base { | 21 namespace base { |
| 21 class Value; | 22 class Value; |
| 22 } | 23 } |
| 23 | 24 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 37 virtual bool SetPref(const std::string& name, const base::Value* value); | 38 virtual bool SetPref(const std::string& name, const base::Value* value); |
| 38 | 39 |
| 39 // Gets the value of the pref with the given |name|. | 40 // Gets the value of the pref with the given |name|. |
| 40 virtual scoped_ptr<base::Value> GetPref(const std::string& name); | 41 virtual scoped_ptr<base::Value> GetPref(const std::string& name); |
| 41 | 42 |
| 42 // Gets the values of all whitelisted prefs. | 43 // Gets the values of all whitelisted prefs. |
| 43 virtual scoped_ptr<base::Value> GetAllPrefs(); | 44 virtual scoped_ptr<base::Value> GetAllPrefs(); |
| 44 | 45 |
| 45 protected: | 46 protected: |
| 46 Profile* profile_; // weak; not owned by us | 47 Profile* profile_; // weak; not owned by us |
| 48 scoped_ptr<PrefsUtil> prefs_util_; |
| 47 | 49 |
| 48 private: | 50 private: |
| 49 DISALLOW_COPY_AND_ASSIGN(SettingsPrivateDelegate); | 51 DISALLOW_COPY_AND_ASSIGN(SettingsPrivateDelegate); |
| 50 }; | 52 }; |
| 51 | 53 |
| 52 } // namespace extensions | 54 } // namespace extensions |
| 53 | 55 |
| 54 #endif // CHROME_BROWSER_EXTENSIONS_API_SETTINGS_PRIVATE_SETTINGS_PRIVATE_DELEG
ATE_H_ | 56 #endif // CHROME_BROWSER_EXTENSIONS_API_SETTINGS_PRIVATE_SETTINGS_PRIVATE_DELEG
ATE_H_ |
| OLD | NEW |