Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2135)

Unified Diff: chrome/browser/extensions/api/developer_private/developer_private_api.h

Issue 1060993003: [Extensions UI] Use developerPrivate API for profile configuration (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/api/developer_private/developer_private_api.h
diff --git a/chrome/browser/extensions/api/developer_private/developer_private_api.h b/chrome/browser/extensions/api/developer_private/developer_private_api.h
index 8126d776fa91d074d360c56a947d2ad8c8a427ae..021cba709bb0999a107093e2acd60ffd155719a8 100644
--- a/chrome/browser/extensions/api/developer_private/developer_private_api.h
+++ b/chrome/browser/extensions/api/developer_private/developer_private_api.h
@@ -228,6 +228,28 @@ class DeveloperPrivateGetExtensionInfoFunction
ResponseAction Run() override;
};
+class DeveloperPrivateGetProfileConfigurationFunction
+ : public DeveloperPrivateAPIFunction {
+ public:
+ DECLARE_EXTENSION_FUNCTION("developerPrivate.getProfileConfiguration",
+ DEVELOPERPRIVATE_GETPROFILECONFIGURATION);
+
+ private:
+ ~DeveloperPrivateGetProfileConfigurationFunction() override;
+ ResponseAction Run() override;
+};
+
+class DeveloperPrivateUpdateProfileConfigurationFunction
+ : public DeveloperPrivateAPIFunction {
+ public:
+ DECLARE_EXTENSION_FUNCTION("developerPrivate.updateProfileConfiguration",
+ DEVELOPERPRIVATE_UPDATEPROFILECONFIGURATION);
+
+ private:
+ ~DeveloperPrivateUpdateProfileConfigurationFunction() override;
+ ResponseAction Run() override;
+};
+
class DeveloperPrivateUpdateExtensionConfigurationFunction
: public DeveloperPrivateAPIFunction {
public:

Powered by Google App Engine
This is Rietveld 408576698