| OLD | NEW | 
|---|
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_DRM_HOST_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_DRM_HOST_H_ | 
| 6 #define CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_DRM_HOST_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_DRM_HOST_H_ | 
| 7 | 7 | 
|  | 8 #include <stdint.h> | 
|  | 9 | 
| 8 #include <string> | 10 #include <string> | 
| 9 | 11 | 
|  | 12 #include "base/macros.h" | 
| 10 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" | 
| 11 #include "chrome/browser/renderer_host/pepper/device_id_fetcher.h" | 14 #include "chrome/browser/renderer_host/pepper/device_id_fetcher.h" | 
| 12 #include "ppapi/host/host_message_context.h" | 15 #include "ppapi/host/host_message_context.h" | 
| 13 #include "ppapi/host/resource_host.h" | 16 #include "ppapi/host/resource_host.h" | 
| 14 | 17 | 
| 15 namespace content { | 18 namespace content { | 
| 16 class BrowserPpapiHost; | 19 class BrowserPpapiHost; | 
| 17 } | 20 } | 
| 18 | 21 | 
| 19 namespace IPC { | 22 namespace IPC { | 
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 51   scoped_refptr<MonitorFinder> monitor_finder_; | 54   scoped_refptr<MonitorFinder> monitor_finder_; | 
| 52 | 55 | 
| 53   base::WeakPtrFactory<PepperFlashDRMHost> weak_factory_; | 56   base::WeakPtrFactory<PepperFlashDRMHost> weak_factory_; | 
| 54 | 57 | 
| 55   DISALLOW_COPY_AND_ASSIGN(PepperFlashDRMHost); | 58   DISALLOW_COPY_AND_ASSIGN(PepperFlashDRMHost); | 
| 56 }; | 59 }; | 
| 57 | 60 | 
| 58 }  // namespace chrome | 61 }  // namespace chrome | 
| 59 | 62 | 
| 60 #endif  // CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_DRM_HOST_H_ | 63 #endif  // CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_DRM_HOST_H_ | 
| OLD | NEW | 
|---|