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

Unified Diff: third_party/WebKit/Source/core/css/resolver/CSSVariableResolver.h

Issue 2399633003: reflow comments in core/css/resolver (Closed)
Patch Set: Created 4 years, 2 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: third_party/WebKit/Source/core/css/resolver/CSSVariableResolver.h
diff --git a/third_party/WebKit/Source/core/css/resolver/CSSVariableResolver.h b/third_party/WebKit/Source/core/css/resolver/CSSVariableResolver.h
index 4420205f29e8b5890b9948d49f1fe03e55bc2e89..a0c8ea13760846b919fc84c3eca2b8f237f764bc 100644
--- a/third_party/WebKit/Source/core/css/resolver/CSSVariableResolver.h
+++ b/third_party/WebKit/Source/core/css/resolver/CSSVariableResolver.h
@@ -47,23 +47,26 @@ class CSSVariableResolver {
CSSPropertyID,
const CSSVariableReferenceValue&);
- // These return false if we encounter a reference to an invalid variable with no fallback
+ // These return false if we encounter a reference to an invalid variable with
+ // no fallback.
- // Resolves a range which may contain var() references or @apply rules
+ // Resolves a range which may contain var() references or @apply rules.
bool resolveTokenRange(CSSParserTokenRange, Vector<CSSParserToken>& result);
- // Resolves the fallback (if present) of a var() reference, starting from the comma
+ // Resolves the fallback (if present) of a var() reference, starting from the
+ // comma.
bool resolveFallback(CSSParserTokenRange, Vector<CSSParserToken>& result);
- // Resolves the contents of a var() reference
+ // Resolves the contents of a var() reference.
bool resolveVariableReference(CSSParserTokenRange,
Vector<CSSParserToken>& result);
- // Consumes and resolves an @apply rule
+ // Consumes and resolves an @apply rule.
void resolveApplyAtRule(CSSParserTokenRange&, Vector<CSSParserToken>& result);
- // These return null if the custom property is invalid
+ // These return null if the custom property is invalid.
- // Returns the CSSVariableData for a custom property, resolving and storing it if necessary
+ // Returns the CSSVariableData for a custom property, resolving and storing it
+ // if necessary.
CSSVariableData* valueForCustomProperty(AtomicString name);
- // Resolves the CSSVariableData from a custom property declaration
+ // Resolves the CSSVariableData from a custom property declaration.
PassRefPtr<CSSVariableData> resolveCustomProperty(AtomicString name,
const CSSVariableData&);

Powered by Google App Engine
This is Rietveld 408576698