// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef EXTENSIONS_COMMON_EVENT_FILTER_H_ #define EXTENSIONS_COMMON_EVENT_FILTER_H_ #include <map> #include <memory> #include <set> #include <string> #include <vector> #include "base/memory/raw_ptr.h" #include "base/values.h" #include "components/url_matcher/url_matcher.h" #include "extensions/common/event_matcher.h" #include "extensions/common/mojom/event_dispatcher.mojom-forward.h" namespace extensions { // Matches incoming events against a collection of EventMatchers. Each added // EventMatcher is given an id which is returned by MatchEvent() when it is // passed a matching event. class EventFilter { … }; } // namespace extensions #endif // EXTENSIONS_COMMON_EVENT_FILTER_H_