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

Unified Diff: extensions/common/watched_pages_recipient.h

Issue 344433003: Prepare declarativeContent API for new script injection feature. Added Javascript types and functio… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address first round review comments and fix test build failure Created 6 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/watched_pages_recipient.h
diff --git a/extensions/common/watched_pages_recipient.h b/extensions/common/watched_pages_recipient.h
new file mode 100644
index 0000000000000000000000000000000000000000..dad3e936efe633f985721b8eafa8fedcc23e9697
--- /dev/null
+++ b/extensions/common/watched_pages_recipient.h
@@ -0,0 +1,18 @@
+// Copyright 2014 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_WATCHED_PAGES_RECIPIENT_H_
+#define EXTENSIONS_COMMON_WATCHED_PAGES_RECIPIENT_H_
+
+namespace extensions {
+
+enum WatchedPagesRecipient {
+ CONTENT_RULES_REGISTRY = 0,
+ USER_SCRIPT_MANAGER,
+ WATCHED_PAGES_RECIPIENT_LAST = USER_SCRIPT_MANAGER,
+};
+
+}
+
+#endif // EXTENSIONS_COMMON_WATCHED_PAGES_RECIPIENT_H_

Powered by Google App Engine
This is Rietveld 408576698