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

Unified Diff: Source/core/html/track/WebVTTToken.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/WebVTTParser.cpp ('k') | Source/core/html/track/WebVTTTokenizer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/track/WebVTTToken.h
diff --git a/Source/core/html/track/WebVTTToken.h b/Source/core/html/track/WebVTTToken.h
index f8671797d0c3aaefb688baef315986ef140212de..0111eb8661bf2219b15ebb847dacb261f82eb1f0 100644
--- a/Source/core/html/track/WebVTTToken.h
+++ b/Source/core/html/track/WebVTTToken.h
@@ -106,7 +106,7 @@ public:
m_type = Type::StartTag;
m_data.clear();
}
-
+
void beginStartTag(UChar character)
{
ASSERT(character);
@@ -129,7 +129,7 @@ public:
m_type = Type::TimestampTag;
m_data.append(character);
}
-
+
void appendToTimestamp(UChar character)
{
ASSERT(character);
@@ -150,7 +150,7 @@ public:
m_classes.append(m_currentBuffer);
m_currentBuffer.clear();
}
-
+
const DataVector& classes() const
{
return m_classes;
@@ -160,7 +160,7 @@ public:
{
appendToStartType(character);
}
-
+
void addNewAnnotation()
{
ASSERT(m_type == Type::StartTag);
@@ -168,7 +168,7 @@ public:
m_annotation.append(m_currentBuffer);
m_currentBuffer.clear();
}
-
+
const DataVector& annotation() const
{
return m_annotation;
@@ -179,7 +179,7 @@ public:
ASSERT(m_type == Type::Uninitialized);
m_type = Type::EndOfFile;
}
-
+
void clear()
{
m_type = Type::Uninitialized;
« no previous file with comments | « Source/core/html/track/WebVTTParser.cpp ('k') | Source/core/html/track/WebVTTTokenizer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698