OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2012 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 #include "base/logging.h" | |
battre
2012/05/15 13:12:32
not necessary
koz (OOO until 15th September)
2012/05/16 00:14:00
Done.
| |
6 #include "chrome/common/extensions/event_matcher.h" | |
7 | |
8 namespace extensions { | |
9 | |
10 EventMatcher::EventMatcher() { | |
11 } | |
12 | |
13 EventMatcher::~EventMatcher() { | |
14 } | |
15 | |
16 bool EventMatcher::MatchNonURLCriteria( | |
17 const EventFilteringInfo& event_info) const { | |
18 // There is currently no criteria apart from URL criteria. | |
19 return true; | |
20 } | |
21 | |
22 } // namespace extensions | |
OLD | NEW |