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

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

Issue 2660003003: Add MediaError.message (Closed)
Patch Set: Address dalecurtis@'s comment: undef STRINGIFY_STATUS_CASE Created 3 years, 8 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/html/HTMLMediaElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLMediaElement.h b/third_party/WebKit/Source/core/html/HTMLMediaElement.h
index c61d5df71763a3c9d41c088da17afab4f569ccb3..32eb92d237e254a4366fa049ebfd9741b039f1cb 100644
--- a/third_party/WebKit/Source/core/html/HTMLMediaElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLMediaElement.h
@@ -451,7 +451,7 @@ class CORE_EXPORT HTMLMediaElement
void ClearMediaPlayer();
void ClearMediaPlayerAndAudioSourceProviderClientWithoutLocking();
bool HavePotentialSourceChild();
- void NoneSupported();
+ void NoneSupported(const String&);
void MediaEngineError(MediaError*);
void CancelPendingEventsAndCallbacks();
void WaitForSourceChange();
@@ -459,7 +459,7 @@ class CORE_EXPORT HTMLMediaElement
KURL SelectNextSourceChild(String* content_type, InvalidURLAction);
- void MediaLoadingFailed(WebMediaPlayer::NetworkState);
+ void MediaLoadingFailed(WebMediaPlayer::NetworkState, const String&);
// deferred loading (preload=none)
bool LoadIsDeferred() const;

Powered by Google App Engine
This is Rietveld 408576698