| 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 "base/basictypes.h" | 8 #include <stdint.h> |
| 9 |
| 10 #include "base/macros.h" |
| 9 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 10 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 11 #include "ppapi/host/host_message_context.h" | 13 #include "ppapi/host/host_message_context.h" |
| 12 #include "ppapi/host/resource_host.h" | 14 #include "ppapi/host/resource_host.h" |
| 13 | 15 |
| 14 namespace base { | 16 namespace base { |
| 15 class Time; | 17 class Time; |
| 16 } | 18 } |
| 17 | 19 |
| 18 namespace content { | 20 namespace content { |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 // For fetching the Flash LSO settings. | 60 // For fetching the Flash LSO settings. |
| 59 scoped_refptr<content_settings::CookieSettings> cookie_settings_; | 61 scoped_refptr<content_settings::CookieSettings> cookie_settings_; |
| 60 base::WeakPtrFactory<PepperFlashBrowserHost> weak_factory_; | 62 base::WeakPtrFactory<PepperFlashBrowserHost> weak_factory_; |
| 61 | 63 |
| 62 DISALLOW_COPY_AND_ASSIGN(PepperFlashBrowserHost); | 64 DISALLOW_COPY_AND_ASSIGN(PepperFlashBrowserHost); |
| 63 }; | 65 }; |
| 64 | 66 |
| 65 } // namespace chrome | 67 } // namespace chrome |
| 66 | 68 |
| 67 #endif // CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_BROWSER_HOST_H_ | 69 #endif // CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_BROWSER_HOST_H_ |
| OLD | NEW |