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 "chrome/common/extensions/event_matcher.h" |
| 6 #include "chrome/common/extensions/event_filtering_info.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 |