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

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: rebase 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
« no previous file with comments | « chrome/common/extensions/event_filter_unittest.cc ('k') | chrome/common/extensions/event_filtering_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..89d4d32f008dac667c6d1f03c24eac21005162dd 100644
--- a/chrome/common/extensions/event_filtering_info.h
+++ b/chrome/common/extensions/event_filtering_info.h
@@ -27,11 +27,13 @@ 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);
+ // Allow implicit copy and assignment.
};
} // namespace extensions
« no previous file with comments | « chrome/common/extensions/event_filter_unittest.cc ('k') | chrome/common/extensions/event_filtering_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698