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

Unified Diff: Source/core/html/track/WebVTTParser.h

Issue 20294002: Fix trailing whitespace in .cpp, .h, and .idl files (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 7 years, 5 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 | « Source/core/html/track/WebVTTElement.h ('k') | Source/core/html/track/WebVTTParser.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/track/WebVTTParser.h
diff --git a/Source/core/html/track/WebVTTParser.h b/Source/core/html/track/WebVTTParser.h
index 8839af7646d13abf0c4ee368d8abc4188f672f31..7d4f08f7ad8e0db854752ce922a8c6a139abc93e 100644
--- a/Source/core/html/track/WebVTTParser.h
+++ b/Source/core/html/track/WebVTTParser.h
@@ -76,7 +76,7 @@ public:
{
return adoptPtr(new WebVTTParser(client, context));
}
-
+
static inline bool isRecognizedTag(const AtomicString& tagName)
{
return tagName == iTag
@@ -93,7 +93,7 @@ public:
}
static inline bool isValidSettingDelimiter(char c)
{
- // ... a WebVTT cue consists of zero or more of the following components, in any order, separated from each other by one or more
+ // ... a WebVTT cue consists of zero or more of the following components, in any order, separated from each other by one or more
// U+0020 SPACE characters or U+0009 CHARACTER TABULATION (tab) characters.
return c == ' ' || c == '\t';
}
@@ -154,7 +154,7 @@ private:
double m_currentEndTime;
StringBuilder m_currentContent;
String m_currentSettings;
-
+
WebVTTToken m_token;
OwnPtr<WebVTTTokenizer> m_tokenizer;
« no previous file with comments | « Source/core/html/track/WebVTTElement.h ('k') | Source/core/html/track/WebVTTParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698