Chromium Code Reviews| Index: chrome/browser/extensions/api/preference/chrome_direct_setting.h |
| diff --git a/chrome/browser/extensions/api/preference/chrome_direct_setting.h b/chrome/browser/extensions/api/preference/chrome_direct_setting.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..8dfc7ed7e8124b74ac00024b04cd41d26412b142 |
| --- /dev/null |
| +++ b/chrome/browser/extensions/api/preference/chrome_direct_setting.h |
| @@ -0,0 +1,87 @@ |
| +// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_BROWSER_EXTENSIONS_API_PREFERENCE_CHROME_DIRECT_SETTING_H__ |
| +#define CHROME_BROWSER_EXTENSIONS_API_PREFERENCE_CHROME_DIRECT_SETTING_H__ |
| + |
| +#include "base/lazy_instance.h" |
| +#include "chrome/browser/extensions/extension_function.h" |
| + |
| +class PrefService; |
| + |
| +namespace extensions { |
| +namespace chromedirectsetting { |
| + |
| +// Base class to host instance method helpers. |
| +class DirectSettingFunctionBase : public SyncExtensionFunction { |
| + protected: |
| + DirectSettingFunctionBase() {} |
|
miket_OOO
2013/07/10 18:34:47
No inline constructors/destructors in non-virtual
robliao
2013/07/10 20:20:09
I think the intent behind this rule is for librari
robliao
2013/07/10 20:33:33
Furthermore, these classes shouldn't store state d
Bernhard Bauer
2013/07/10 22:11:26
No, the main purpose of the rule is to prevent unn
Bernhard Bauer
2013/07/10 22:11:26
Stateless or not is not the issue here, but whethe
robliao
2013/07/10 22:18:45
What non-trivial code is present here? The compile
Bernhard Bauer
2013/07/10 22:37:24
Exactly, and it still does generate the default co
robliao
2013/07/11 00:28:13
I went ahead and removed the inline constructors a
|
| + virtual ~DirectSettingFunctionBase() {} |
| + |
| + // Returns the user pref service. |
| + PrefService* GetPrefService(); |
| + |
| + // Returns true if the caller is a component extension. |
| + bool IsCalledFromComponentExtension(); |
| + |
| + // Returns true if the preference is on the whitelist. |
| + bool IsPreferenceOnWhitelist(const std::string& pref_key); |
| + |
| + private: |
| + DISALLOW_COPY_AND_ASSIGN(DirectSettingFunctionBase); |
| +}; |
| + |
| +class GetDirectSettingFunction : public DirectSettingFunctionBase { |
| + public: |
| + DECLARE_EXTENSION_FUNCTION("types.private.ChromeDirectSetting.get", |
| + TYPES_PRIVATE_CHROMEDIRECTSETTING_GET) |
| + |
| + GetDirectSettingFunction() {} |
| + |
| + protected: |
| + // ExtensionFunction: |
| + virtual bool RunImpl() OVERRIDE; |
| + |
| + private: |
| + virtual ~GetDirectSettingFunction() {} |
| + DISALLOW_COPY_AND_ASSIGN(GetDirectSettingFunction); |
| +}; |
| + |
| +class SetDirectSettingFunction : public DirectSettingFunctionBase { |
| + public: |
| + DECLARE_EXTENSION_FUNCTION("types.private.ChromeDirectSetting.set", |
| + TYPES_PRIVATE_CHROMEDIRECTSETTING_SET) |
| + |
| + SetDirectSettingFunction() {} |
| + |
| + protected: |
| + // ExtensionFunction: |
| + virtual bool RunImpl() OVERRIDE; |
| + |
| + private: |
| + virtual ~SetDirectSettingFunction() {} |
| + DISALLOW_COPY_AND_ASSIGN(SetDirectSettingFunction); |
| +}; |
| + |
| +class ClearDirectSettingFunction : public DirectSettingFunctionBase { |
| + public: |
| + DECLARE_EXTENSION_FUNCTION("types.private.ChromeDirectSetting.clear", |
| + TYPES_PRIVATE_CHROMEDIRECTSETTING_CLEAR) |
| + |
| + ClearDirectSettingFunction() {} |
| + |
| + protected: |
| + // ExtensionFunction: |
| + virtual bool RunImpl() OVERRIDE; |
| + |
| + private: |
| + virtual ~ClearDirectSettingFunction() {} |
| + DISALLOW_COPY_AND_ASSIGN(ClearDirectSettingFunction); |
| +}; |
| + |
| +} // namespace chromedirectsetting |
| +} // namespace extensions |
| + |
| +#endif // CHROME_BROWSER_EXTENSIONS_API_PREFERENCE_CHROME_DIRECT_SETTING_H__ |
| + |