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

Unified Diff: chrome/browser/content_settings/content_settings_pattern.h

Issue 7088017: Split incognito extension content settings in session-only and persistent. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review Created 9 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/browser/content_settings/content_settings_pattern.h
diff --git a/chrome/browser/content_settings/content_settings_pattern.h b/chrome/browser/content_settings/content_settings_pattern.h
index 4b55683c81d473f4e99e9afcfe1fc09d72a86723..5bfb6d8fe766d60812682a25ec0c379db8e28f3e 100644
--- a/chrome/browser/content_settings/content_settings_pattern.h
+++ b/chrome/browser/content_settings/content_settings_pattern.h
@@ -26,16 +26,16 @@ class ContentSettingsPattern {
// Each content settings pattern describes a set of origins. Patterns, and the
// sets they describe, have specific relations. |Relation| describes the
// relation of two patterns A and B. When pattern A is compared with pattern B
- // (A compare B) interessting relations are:
- // - IDENTITY : Pattern A and B are identical. The patterns are equal.
- // - DISJOINT : Pattern A and B have no intersection. A and B never match
- // a the origin of a URL at the same time.
- // - SUCCESSOR : Pattern A and B have an intersection. But pattern B has a
+ // (|A.Compare(B)|) interesting relations are:
+ // - IDENTITY: Pattern A and B are identical. The patterns are equal.
+ // - DISJOINT: Pattern A and B have no intersection. A and B never both
+ // match the origin of a URL.
+ // - SUCCESSOR: Pattern A and B have an intersection. But pattern B has a
// higher precedence than pattern A for URLs that are matched
// by both pattern.
- // - PREDECESSOR : Pattern A and B have an intersection. But pattern A has a
- // higher precedence than pattern B for URLs that are matched
- // by both pattern.
+ // - PREDECESSOR: Pattern A and B have an intersection. But pattern A has a
+ // higher precedence than pattern B for URLs that are matched
+ // by both pattern.
enum Relation {
DISJOINT = -2,
SUCCESSOR = -1,

Powered by Google App Engine
This is Rietveld 408576698