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

Side by Side Diff: Source/WebKit/chromium/src/WebMediaPlayerClientImpl.h

Issue 10536097: Merge 119742 - Plumb CORS attribute information from HTMLMediaElement to media players so it can be… (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1132/
Patch Set: Created 8 years, 6 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 virtual WTF::PassRefPtr<WebCore::TimeRanges> buffered() const; 121 virtual WTF::PassRefPtr<WebCore::TimeRanges> buffered() const;
122 virtual int dataRate() const; 122 virtual int dataRate() const;
123 virtual bool totalBytesKnown() const; 123 virtual bool totalBytesKnown() const;
124 virtual unsigned totalBytes() const; 124 virtual unsigned totalBytes() const;
125 virtual unsigned bytesLoaded() const; 125 virtual unsigned bytesLoaded() const;
126 virtual void setSize(const WebCore::IntSize&); 126 virtual void setSize(const WebCore::IntSize&);
127 virtual void paint(WebCore::GraphicsContext*, const WebCore::IntRect&); 127 virtual void paint(WebCore::GraphicsContext*, const WebCore::IntRect&);
128 virtual void paintCurrentFrameInContext(WebCore::GraphicsContext*, const Web Core::IntRect&); 128 virtual void paintCurrentFrameInContext(WebCore::GraphicsContext*, const Web Core::IntRect&);
129 virtual void setPreload(WebCore::MediaPlayer::Preload); 129 virtual void setPreload(WebCore::MediaPlayer::Preload);
130 virtual bool hasSingleSecurityOrigin() const; 130 virtual bool hasSingleSecurityOrigin() const;
131 virtual bool didPassCORSAccessCheck() const;
131 virtual WebCore::MediaPlayer::MovieLoadType movieLoadType() const; 132 virtual WebCore::MediaPlayer::MovieLoadType movieLoadType() const;
132 virtual float mediaTimeForTimeValue(float timeValue) const; 133 virtual float mediaTimeForTimeValue(float timeValue) const;
133 virtual unsigned decodedFrameCount() const; 134 virtual unsigned decodedFrameCount() const;
134 virtual unsigned droppedFrameCount() const; 135 virtual unsigned droppedFrameCount() const;
135 virtual unsigned audioDecodedByteCount() const; 136 virtual unsigned audioDecodedByteCount() const;
136 virtual unsigned videoDecodedByteCount() const; 137 virtual unsigned videoDecodedByteCount() const;
137 #if USE(NATIVE_FULLSCREEN_VIDEO) 138 #if USE(NATIVE_FULLSCREEN_VIDEO)
138 virtual bool enterFullscreen() const; 139 virtual bool enterFullscreen() const;
139 virtual void exitFullscreen(); 140 virtual void exitFullscreen();
140 #endif 141 #endif
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 249
249 AudioSourceProviderImpl m_audioSourceProvider; 250 AudioSourceProviderImpl m_audioSourceProvider;
250 #endif 251 #endif
251 }; 252 };
252 253
253 } // namespace WebKit 254 } // namespace WebKit
254 255
255 #endif 256 #endif
256 257
257 #endif 258 #endif
OLDNEW
« no previous file with comments | « Source/WebKit/chromium/src/AssertMatchingEnums.cpp ('k') | Source/WebKit/chromium/src/WebMediaPlayerClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698