Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1093)

Unified Diff: chrome/common/extensions/event_matcher.cc

Issue 10388135: Add common code for extensions event filtering. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: self review Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/event_matcher.cc
diff --git a/chrome/common/extensions/event_matcher.cc b/chrome/common/extensions/event_matcher.cc
new file mode 100644
index 0000000000000000000000000000000000000000..4af6b355571a1b995243c0339aed60b02ba01def
--- /dev/null
+++ b/chrome/common/extensions/event_matcher.cc
@@ -0,0 +1,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 "base/logging.h"
battre 2012/05/15 13:12:32 not necessary
koz (OOO until 15th September) 2012/05/16 00:14:00 Done.
+#include "chrome/common/extensions/event_matcher.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

Powered by Google App Engine
This is Rietveld 408576698