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 <stdint.h> |
| 9 |
9 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" |
10 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
11 #include "ppapi/host/resource_host.h" | 13 #include "ppapi/host/resource_host.h" |
12 | 14 |
13 namespace base { | 15 namespace base { |
14 class FilePath; | 16 class FilePath; |
15 } | 17 } |
16 | 18 |
17 namespace content { | 19 namespace content { |
18 class RendererPpapiHost; | 20 class RendererPpapiHost; |
19 } | 21 } |
(...skipping 22 matching lines...) Expand all Loading... |
42 | 44 |
43 // Non-owning pointer. | 45 // Non-owning pointer. |
44 content::RendererPpapiHost* renderer_ppapi_host_; | 46 content::RendererPpapiHost* renderer_ppapi_host_; |
45 | 47 |
46 base::WeakPtrFactory<PepperFlashDRMRendererHost> weak_factory_; | 48 base::WeakPtrFactory<PepperFlashDRMRendererHost> weak_factory_; |
47 | 49 |
48 DISALLOW_COPY_AND_ASSIGN(PepperFlashDRMRendererHost); | 50 DISALLOW_COPY_AND_ASSIGN(PepperFlashDRMRendererHost); |
49 }; | 51 }; |
50 | 52 |
51 #endif // CHROME_RENDERER_PEPPER_PEPPER_FLASH_DRM_RENDERER_HOST_H_ | 53 #endif // CHROME_RENDERER_PEPPER_PEPPER_FLASH_DRM_RENDERER_HOST_H_ |
OLD | NEW |