| OLD | NEW |
| 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 27 matching lines...) Expand all Loading... |
| 38 #include "platform/weborigin/KURL.h" | 38 #include "platform/weborigin/KURL.h" |
| 39 #include "wtf/OwnPtr.h" | 39 #include "wtf/OwnPtr.h" |
| 40 #include "wtf/PassOwnPtr.h" | 40 #include "wtf/PassOwnPtr.h" |
| 41 #include "wtf/ThreadingPrimitives.h" | 41 #include "wtf/ThreadingPrimitives.h" |
| 42 | 42 |
| 43 namespace blink { | 43 namespace blink { |
| 44 | 44 |
| 45 class AudioSourceProviderClient; | 45 class AudioSourceProviderClient; |
| 46 class HTMLMediaElement; | 46 class HTMLMediaElement; |
| 47 class WebAudioSourceProvider; | 47 class WebAudioSourceProvider; |
| 48 class WebContentDecryptionModule; | |
| 49 class WebMediaPlayer; | 48 class WebMediaPlayer; |
| 50 | 49 |
| 51 // This class serves as a bridge between MediaPlayer and | 50 // This class serves as a bridge between MediaPlayer and |
| 52 // WebMediaPlayer. | 51 // WebMediaPlayer. |
| 53 class WebMediaPlayerClientImpl final : public MediaPlayer, public WebMediaPlayer
Client { | 52 class WebMediaPlayerClientImpl final : public MediaPlayer, public WebMediaPlayer
Client { |
| 54 | 53 |
| 55 public: | 54 public: |
| 56 static PassOwnPtr<MediaPlayer> create(MediaPlayerClient*); | 55 static PassOwnPtr<MediaPlayer> create(MediaPlayerClient*); |
| 57 | 56 |
| 58 virtual ~WebMediaPlayerClientImpl(); | 57 virtual ~WebMediaPlayerClientImpl(); |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 Mutex provideInputLock; | 151 Mutex provideInputLock; |
| 153 }; | 152 }; |
| 154 | 153 |
| 155 AudioSourceProviderImpl m_audioSourceProvider; | 154 AudioSourceProviderImpl m_audioSourceProvider; |
| 156 #endif | 155 #endif |
| 157 }; | 156 }; |
| 158 | 157 |
| 159 } // namespace blink | 158 } // namespace blink |
| 160 | 159 |
| 161 #endif | 160 #endif |
| OLD | NEW |