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

Unified Diff: chrome/common/extensions/event_filtering_info.h

Issue 10534125: Extend EventFilter to handle the case where EventMatchers from event X get (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: respond to comments Created 8 years, 6 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_filtering_info.h
diff --git a/chrome/common/extensions/event_filtering_info.h b/chrome/common/extensions/event_filtering_info.h
index e7077f1ba89bb213946d9a06349befbd6819a970..044797229eb87cbb78cedc1b1f4d18e78a3fb308 100644
--- a/chrome/common/extensions/event_filtering_info.h
+++ b/chrome/common/extensions/event_filtering_info.h
@@ -27,11 +27,11 @@ class EventFilteringInfo {
bool has_url() const { return has_url_; }
const GURL& url() const { return url_; }
+ std::string AsJSONString() const;
+
private:
bool has_url_;
GURL url_;
-
- DISALLOW_COPY_AND_ASSIGN(EventFilteringInfo);
battre 2012/06/13 09:22:04 Can you add a comment "// Allow implicit copy and
koz (OOO until 15th September) 2012/06/14 02:22:25 Done.
};
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698