summaryrefslogtreecommitdiffstats
path: root/chrome/common/extensions/event_matcher.cc
blob: 1f9e47481c9baac0e2c046fbdd3bd06df53ed6fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (c) 2012 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.

#include "chrome/common/extensions/event_matcher.h"
#include "chrome/common/extensions/event_filtering_info.h"

namespace extensions {

EventMatcher::EventMatcher() {
}

EventMatcher::~EventMatcher() {
}

bool EventMatcher::MatchNonURLCriteria(
    const EventFilteringInfo& event_info) const {
  // There is currently no criteria apart from URL criteria.
  return true;
}

}  // namespace extensions