| 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_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_BROWSER_HOST_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_BROWSER_HOST_H_ |
| 6 #define CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_BROWSER_HOST_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_BROWSER_HOST_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 13 #include "base/timer/timer.h" | 13 #include "base/timer/timer.h" |
| 14 #include "ppapi/host/host_message_context.h" | 14 #include "ppapi/host/host_message_context.h" |
| 15 #include "ppapi/host/resource_host.h" | 15 #include "ppapi/host/resource_host.h" |
| 16 | 16 |
| 17 namespace base { | 17 namespace base { |
| 18 class Time; | 18 class Time; |
| 19 } | 19 } |
| 20 | 20 |
| 21 namespace content { | 21 namespace content { |
| 22 class BrowserPpapiHost; | 22 class BrowserPpapiHost; |
| 23 class ResourceContext; | |
| 24 } | 23 } |
| 25 | 24 |
| 26 namespace content_settings { | 25 namespace content_settings { |
| 27 class CookieSettings; | 26 class CookieSettings; |
| 28 } | 27 } |
| 29 | 28 |
| 30 namespace device { | 29 namespace device { |
| 31 class PowerSaveBlocker; | 30 class PowerSaveBlocker; |
| 32 } | 31 } |
| 33 | 32 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 // For fetching the Flash LSO settings. | 71 // For fetching the Flash LSO settings. |
| 73 scoped_refptr<content_settings::CookieSettings> cookie_settings_; | 72 scoped_refptr<content_settings::CookieSettings> cookie_settings_; |
| 74 base::WeakPtrFactory<PepperFlashBrowserHost> weak_factory_; | 73 base::WeakPtrFactory<PepperFlashBrowserHost> weak_factory_; |
| 75 | 74 |
| 76 DISALLOW_COPY_AND_ASSIGN(PepperFlashBrowserHost); | 75 DISALLOW_COPY_AND_ASSIGN(PepperFlashBrowserHost); |
| 77 }; | 76 }; |
| 78 | 77 |
| 79 } // namespace chrome | 78 } // namespace chrome |
| 80 | 79 |
| 81 #endif // CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_BROWSER_HOST_H_ | 80 #endif // CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_BROWSER_HOST_H_ |
| OLD | NEW |