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

Unified Diff: extensions/common/api/declarative/declarative_manifest_data.h

Issue 1158693006: Create a mechanism define declarative rules via the extension manifest. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add thread safety to extensionregistry notifications Created 5 years, 6 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: extensions/common/api/declarative/declarative_manifest_data.h
diff --git a/extensions/common/api/declarative/declarative_manifest_data.h b/extensions/common/api/declarative/declarative_manifest_data.h
new file mode 100644
index 0000000000000000000000000000000000000000..bc659a7b784c9d305b974c6b3e880b39aee2c32d
--- /dev/null
+++ b/extensions/common/api/declarative/declarative_manifest_data.h
@@ -0,0 +1,45 @@
+// Copyright 2015 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 EXTENSIONS_COMMON_API_DECLARATIVE_DECLARATIVE_MANIFEST_DATA_H_
+#define EXTENSIONS_COMMON_API_DECLARATIVE_DECLARATIVE_MANIFEST_DATA_H_
+
+#include <vector>
+
+#include "base/memory/linked_ptr.h"
+#include "base/strings/string16.h"
+#include "extensions/common/api/events.h"
+#include "extensions/common/extension.h"
+#include "extensions/common/manifest_handler.h"
+
+namespace extensions {
+
+// The parsed form of the "event_rules" manifest entry.
+class DeclarativeManifestData : public Extension::ManifestData {
+ public:
+ typedef extensions::core_api::events::Rule Rule;
+
+ DeclarativeManifestData();
+ ~DeclarativeManifestData() override;
+
+ // Gets the DeclarativeManifestData for |extension|, or NULL if none was
+ // specified.
+ static DeclarativeManifestData* Get(const Extension* extension);
+
+ // Tries to construct the info based on |value|, as it would have appeared in
+ // the manifest. Sets |error| and returns an empty scoped_ptr on failure.
+ static scoped_ptr<DeclarativeManifestData> FromValue(const base::Value& value,
+ base::string16* error);
+
+ std::vector<linked_ptr<DeclarativeManifestData::Rule>>& RulesForEvent(
+ const std::string& event);
+
+ private:
+ std::map<std::string, std::vector<linked_ptr<Rule>>> event_rules_map_;
+ DISALLOW_COPY_AND_ASSIGN(DeclarativeManifestData);
+};
+
+} // namespace extensions
+
+#endif // EXTENSIONS_COMMON_API_DECLARATIVE_DECLARATIVE_MANIFEST_DATA_H_

Powered by Google App Engine
This is Rietveld 408576698