| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_MEDIA_STREAM_TRACK_HOST_BASE_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_MEDIA_STREAM_TRACK_HOST_BASE_H_ |
| 6 #define CONTENT_RENDERER_PEPPER_PEPPER_MEDIA_STREAM_TRACK_HOST_BASE_H_ | 6 #define CONTENT_RENDERER_PEPPER_PEPPER_MEDIA_STREAM_TRACK_HOST_BASE_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "content/common/content_export.h" | 9 #include "content/common/content_export.h" |
| 10 #include "ppapi/host/resource_host.h" | 10 #include "ppapi/host/resource_host.h" |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 bool InitBuffers(int32_t number_of_buffers, int32_t buffer_size); | 26 bool InitBuffers(int32_t number_of_buffers, int32_t buffer_size); |
| 27 | 27 |
| 28 ppapi::MediaStreamBufferManager* buffer_manager() { return &buffer_manager_; } | 28 ppapi::MediaStreamBufferManager* buffer_manager() { return &buffer_manager_; } |
| 29 | 29 |
| 30 // Sends a buffer index to the corresponding MediaStreamTrackResourceBase | 30 // Sends a buffer index to the corresponding MediaStreamTrackResourceBase |
| 31 // via an IPC message. The resource adds the buffer index into its | 31 // via an IPC message. The resource adds the buffer index into its |
| 32 // |buffer_manager_| for reading or writing. | 32 // |buffer_manager_| for reading or writing. |
| 33 // Also see |MediaStreamBufferManager|. | 33 // Also see |MediaStreamBufferManager|. |
| 34 void SendEnqueueBufferMessageToPlugin(int32_t index); | 34 void SendEnqueueBufferMessageToPlugin(int32_t index); |
| 35 | 35 |
| 36 private: | |
| 37 // Subclasses must implement this method to clean up when the track is closed. | |
| 38 virtual void OnClose() = 0; | |
| 39 | |
| 40 // ResourceMessageHandler overrides: | 36 // ResourceMessageHandler overrides: |
| 41 virtual int32_t OnResourceMessageReceived( | 37 virtual int32_t OnResourceMessageReceived( |
| 42 const IPC::Message& msg, | 38 const IPC::Message& msg, |
| 43 ppapi::host::HostMessageContext* context) OVERRIDE; | 39 ppapi::host::HostMessageContext* context) OVERRIDE; |
| 44 | 40 |
| 41 private: |
| 42 // Subclasses must implement this method to clean up when the track is closed. |
| 43 virtual void OnClose() = 0; |
| 44 |
| 45 // Message handlers: | 45 // Message handlers: |
| 46 int32_t OnHostMsgEnqueueBuffer(ppapi::host::HostMessageContext* context, | 46 int32_t OnHostMsgEnqueueBuffer(ppapi::host::HostMessageContext* context, |
| 47 int32_t index); | 47 int32_t index); |
| 48 int32_t OnHostMsgClose(ppapi::host::HostMessageContext* context); | 48 int32_t OnHostMsgClose(ppapi::host::HostMessageContext* context); |
| 49 | 49 |
| 50 RendererPpapiHost* host_; | 50 RendererPpapiHost* host_; |
| 51 | 51 |
| 52 ppapi::MediaStreamBufferManager buffer_manager_; | 52 ppapi::MediaStreamBufferManager buffer_manager_; |
| 53 | 53 |
| 54 DISALLOW_COPY_AND_ASSIGN(PepperMediaStreamTrackHostBase); | 54 DISALLOW_COPY_AND_ASSIGN(PepperMediaStreamTrackHostBase); |
| 55 }; | 55 }; |
| 56 | 56 |
| 57 } // namespace content | 57 } // namespace content |
| 58 | 58 |
| 59 #endif // CONTENT_RENDERER_PEPPER_PEPPER_MEDIA_STREAM_TRACK_HOST_BASE_H_ | 59 #endif // CONTENT_RENDERER_PEPPER_PEPPER_MEDIA_STREAM_TRACK_HOST_BASE_H_ |
| OLD | NEW |