OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 // | 4 // |
5 // DeclarativeRule<>, DeclarativeConditionSet<>, and DeclarativeActionSet<> | 5 // DeclarativeRule<>, DeclarativeConditionSet<>, and DeclarativeActionSet<> |
6 // templates usable with multiple different declarativeFoo systems. These are | 6 // templates usable with multiple different declarativeFoo systems. These are |
7 // templated on the Condition and Action types that define the behavior of a | 7 // templated on the Condition and Action types that define the behavior of a |
8 // particular declarative event. | 8 // particular declarative event. |
9 | 9 |
10 #ifndef EXTENSIONS_BROWSER_API_DECLARATIVE_DECLARATIVE_RULE_H__ | 10 #ifndef EXTENSIONS_BROWSER_API_DECLARATIVE_DECLARATIVE_RULE_H__ |
11 #define EXTENSIONS_BROWSER_API_DECLARATIVE_DECLARATIVE_RULE_H__ | 11 #define EXTENSIONS_BROWSER_API_DECLARATIVE_DECLARATIVE_RULE_H__ |
12 | 12 |
13 #include <limits> | 13 #include <limits> |
14 #include <set> | 14 #include <set> |
15 #include <string> | 15 #include <string> |
16 #include <vector> | 16 #include <vector> |
17 | 17 |
18 #include "base/callback.h" | 18 #include "base/callback.h" |
19 #include "base/memory/linked_ptr.h" | 19 #include "base/memory/linked_ptr.h" |
20 #include "base/memory/scoped_vector.h" | |
21 #include "base/stl_util.h" | 20 #include "base/stl_util.h" |
22 #include "base/time/time.h" | 21 #include "base/time/time.h" |
23 #include "components/url_matcher/url_matcher.h" | 22 #include "components/url_matcher/url_matcher.h" |
24 #include "extensions/common/api/events.h" | 23 #include "extensions/common/api/events.h" |
25 #include "extensions/common/extension.h" | 24 #include "extensions/common/extension.h" |
26 | 25 |
27 namespace base { | 26 namespace base { |
28 class Time; | 27 class Time; |
29 class Value; | 28 class Value; |
30 } | 29 } |
(...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
496 } | 495 } |
497 | 496 |
498 template<typename ConditionT, typename ActionT> | 497 template<typename ConditionT, typename ActionT> |
499 int DeclarativeRule<ConditionT, ActionT>::GetMinimumPriority() const { | 498 int DeclarativeRule<ConditionT, ActionT>::GetMinimumPriority() const { |
500 return actions_->GetMinimumPriority(); | 499 return actions_->GetMinimumPriority(); |
501 } | 500 } |
502 | 501 |
503 } // namespace extensions | 502 } // namespace extensions |
504 | 503 |
505 #endif // EXTENSIONS_BROWSER_API_DECLARATIVE_DECLARATIVE_RULE_H__ | 504 #endif // EXTENSIONS_BROWSER_API_DECLARATIVE_DECLARATIVE_RULE_H__ |
OLD | NEW |