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

Unified Diff: Source/core/loader/TextTrackLoader.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/loader/TextResourceDecoder.cpp ('k') | Source/core/loader/TextTrackLoader.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/loader/TextTrackLoader.h
diff --git a/Source/core/loader/TextTrackLoader.h b/Source/core/loader/TextTrackLoader.h
index dc8eb985d6ab3632b346f5e172bd10b9ca2522b2..b6319d6c9023cd154f270181a4e0595c604214bc 100644
--- a/Source/core/loader/TextTrackLoader.h
+++ b/Source/core/loader/TextTrackLoader.h
@@ -42,7 +42,7 @@ class ScriptExecutionContext;
class TextTrackLoaderClient {
public:
virtual ~TextTrackLoaderClient() { }
-
+
virtual bool shouldLoadCues(TextTrackLoader*) = 0;
virtual void newCuesAvailable(TextTrackLoader*) = 0;
virtual void cueLoadingStarted(TextTrackLoader*) = 0;
@@ -53,7 +53,7 @@ public:
};
class TextTrackLoader : public CachedResourceClient, private WebVTTParserClient {
- WTF_MAKE_NONCOPYABLE(TextTrackLoader);
+ WTF_MAKE_NONCOPYABLE(TextTrackLoader);
WTF_MAKE_FAST_ALLOCATED;
public:
static PassOwnPtr<TextTrackLoader> create(TextTrackLoaderClient* client, ScriptExecutionContext* context)
@@ -61,7 +61,7 @@ public:
return adoptPtr(new TextTrackLoader(client, context));
}
virtual ~TextTrackLoader();
-
+
bool load(const KURL&, const String& crossOriginMode);
void cancelLoad();
@@ -77,16 +77,16 @@ private:
// CachedResourceClient
virtual void notifyFinished(CachedResource*);
virtual void deprecatedDidReceiveCachedResource(CachedResource*);
-
+
// WebVTTParserClient
virtual void newCuesParsed();
#if ENABLE(WEBVTT_REGIONS)
virtual void newRegionsParsed();
#endif
virtual void fileFailedToParse();
-
+
TextTrackLoader(TextTrackLoaderClient*, ScriptExecutionContext*);
-
+
void processNewCueData(CachedResource*);
void cueLoadTimerFired(Timer<TextTrackLoader>*);
void corsPolicyPreventedLoad();
« no previous file with comments | « Source/core/loader/TextResourceDecoder.cpp ('k') | Source/core/loader/TextTrackLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698