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

Unified Diff: Source/core/html/HTMLMediaElement.h

Issue 54673003: Indent comments in HTMLMediaElement.h (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLMediaElement.h
diff --git a/Source/core/html/HTMLMediaElement.h b/Source/core/html/HTMLMediaElement.h
index fc4c1f97b6535e7cee88229a51ca0bef570004a5..d56d5eb7fc1ca968a380b1a8184aad76ef25943c 100644
--- a/Source/core/html/HTMLMediaElement.h
+++ b/Source/core/html/HTMLMediaElement.h
@@ -98,11 +98,10 @@ public:
bool isActive() const { return m_active; }
-// DOM API
-// error state
+ // error state
PassRefPtr<MediaError> error() const;
-// network state
+ // network state
void setSrc(const String&);
const KURL& currentSrc() const { return m_currentSrc; }
@@ -116,11 +115,11 @@ public:
void load();
String canPlayType(const String& mimeType, const String& keySystem = String(), const KURL& = KURL()) const;
-// ready state
+ // ready state
ReadyState readyState() const;
bool seeking() const;
-// playback state
+ // playback state
double currentTime() const;
void setCurrentTime(double, ExceptionState&);
double duration() const;
@@ -139,15 +138,15 @@ public:
void play();
void pause();
-// Statistics
+ // statistics
unsigned webkitAudioDecodedByteCount() const;
unsigned webkitVideoDecodedByteCount() const;
-// Media Source.
+ // media source extensions
void closeMediaSource();
-
void durationChanged(double duration);
+ // encrypted media extensions
void webkitGenerateKeyRequest(const String& keySystem, PassRefPtr<Uint8Array> initData, ExceptionState&);
void webkitGenerateKeyRequest(const String& keySystem, ExceptionState&);
void webkitAddKey(const String& keySystem, PassRefPtr<Uint8Array> key, PassRefPtr<Uint8Array> initData, const String& sessionId, ExceptionState&);
@@ -164,7 +163,7 @@ public:
void setMediaKeys(MediaKeys*);
#endif
-// controls
+ // controls
bool controls() const;
void setControls(bool);
double volume() const;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698