OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef EXTENSIONS_COMMON_WATCHED_PAGES_RECIPIENT_H_ | |
6 #define EXTENSIONS_COMMON_WATCHED_PAGES_RECIPIENT_H_ | |
7 | |
8 namespace extensions { | |
9 | |
10 enum WatchedPagesRecipient { | |
11 CONTENT_RULES_REGISTRY = 0, | |
Jeffrey Yasskin
2014/06/27 22:03:41
Definitely comment what these mean. If possible, t
Mark Dittmer
2014/06/30 11:50:35
We could certainly change this to a boolean, but I
| |
12 USER_SCRIPT_MANAGER, | |
13 WATCHED_PAGES_RECIPIENT_LAST = USER_SCRIPT_MANAGER, | |
14 }; | |
15 | |
16 } | |
17 | |
18 #endif // EXTENSIONS_COMMON_WATCHED_PAGES_RECIPIENT_H_ | |
OLD | NEW |