| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CHROME_RENDERER_PEPPER_PEPPER_FLASH_DRM_RENDERER_HOST_H_ | 5 #ifndef CHROME_RENDERER_PEPPER_PEPPER_FLASH_DRM_RENDERER_HOST_H_ |
| 6 #define CHROME_RENDERER_PEPPER_PEPPER_FLASH_DRM_RENDERER_HOST_H_ | 6 #define CHROME_RENDERER_PEPPER_PEPPER_FLASH_DRM_RENDERER_HOST_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/memory/weak_ptr.h" |
| 10 #include "ppapi/host/resource_host.h" | 11 #include "ppapi/host/resource_host.h" |
| 11 | 12 |
| 13 namespace base { |
| 14 class FilePath; |
| 15 } |
| 16 |
| 12 namespace content { | 17 namespace content { |
| 13 class RendererPpapiHost; | 18 class RendererPpapiHost; |
| 14 } | 19 } |
| 15 | 20 |
| 16 namespace chrome { | 21 namespace chrome { |
| 17 | 22 |
| 18 // TODO(raymes): This is only needed until we move FileRef resources to the | 23 // TODO(raymes): This is only needed until we move FileRef resources to the |
| 19 // browser. After that, get rid of this class altogether. | 24 // browser. After that, get rid of this class altogether. |
| 20 class PepperFlashDRMRendererHost : public ppapi::host::ResourceHost { | 25 class PepperFlashDRMRendererHost : public ppapi::host::ResourceHost { |
| 21 public: | 26 public: |
| 22 PepperFlashDRMRendererHost(content::RendererPpapiHost* host, | 27 PepperFlashDRMRendererHost(content::RendererPpapiHost* host, |
| 23 PP_Instance instance, | 28 PP_Instance instance, |
| 24 PP_Resource resource); | 29 PP_Resource resource); |
| 25 virtual ~PepperFlashDRMRendererHost(); | 30 virtual ~PepperFlashDRMRendererHost(); |
| 26 | 31 |
| 27 virtual int32_t OnResourceMessageReceived( | 32 virtual int32_t OnResourceMessageReceived( |
| 28 const IPC::Message& msg, | 33 const IPC::Message& msg, |
| 29 ppapi::host::HostMessageContext* context) OVERRIDE; | 34 ppapi::host::HostMessageContext* context) OVERRIDE; |
| 30 | 35 |
| 31 private: | 36 private: |
| 32 int32_t OnGetVoucherFile(ppapi::host::HostMessageContext* context); | 37 int32_t OnGetVoucherFile(ppapi::host::HostMessageContext* context); |
| 33 | 38 |
| 39 void DidCreateFileRefHost(ppapi::host::ReplyMessageContext reply_context, |
| 40 const base::FilePath& external_path, |
| 41 int pending_resource_id); |
| 42 |
| 34 // Non-owning pointer. | 43 // Non-owning pointer. |
| 35 content::RendererPpapiHost* renderer_ppapi_host_; | 44 content::RendererPpapiHost* renderer_ppapi_host_; |
| 36 | 45 |
| 46 base::WeakPtrFactory<PepperFlashDRMRendererHost> weak_factory_; |
| 47 |
| 37 DISALLOW_COPY_AND_ASSIGN(PepperFlashDRMRendererHost); | 48 DISALLOW_COPY_AND_ASSIGN(PepperFlashDRMRendererHost); |
| 38 }; | 49 }; |
| 39 | 50 |
| 40 } // namespace chrome | 51 } // namespace chrome |
| 41 | 52 |
| 42 #endif // CHROME_RENDERER_PEPPER_PEPPER_FLASH_DRM_RENDERER_HOST_H_ | 53 #endif // CHROME_RENDERER_PEPPER_PEPPER_FLASH_DRM_RENDERER_HOST_H_ |
| OLD | NEW |