| 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_RENDERER_HOST_H_ | 5 #ifndef CHROME_RENDERER_PEPPER_PEPPER_FLASH_RENDERER_HOST_H_ |
| 6 #define CHROME_RENDERER_PEPPER_PEPPER_FLASH_RENDERER_HOST_H_ | 6 #define CHROME_RENDERER_PEPPER_PEPPER_FLASH_RENDERER_HOST_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 8 #include <string> | 10 #include <string> |
| 9 #include <vector> | 11 #include <vector> |
| 10 | 12 |
| 11 #include "base/basictypes.h" | 13 #include "base/macros.h" |
| 12 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
| 13 #include "ppapi/host/host_message_context.h" | 15 #include "ppapi/host/host_message_context.h" |
| 14 #include "ppapi/host/resource_host.h" | 16 #include "ppapi/host/resource_host.h" |
| 15 | 17 |
| 16 struct PP_Rect; | 18 struct PP_Rect; |
| 17 | 19 |
| 18 namespace ppapi { | 20 namespace ppapi { |
| 19 struct URLRequestInfoData; | 21 struct URLRequestInfoData; |
| 20 } | 22 } |
| 21 | 23 |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 // yet been replied to. | 63 // yet been replied to. |
| 62 std::vector<ppapi::host::ReplyMessageContext> navigate_replies_; | 64 std::vector<ppapi::host::ReplyMessageContext> navigate_replies_; |
| 63 | 65 |
| 64 content::RendererPpapiHost* host_; | 66 content::RendererPpapiHost* host_; |
| 65 base::WeakPtrFactory<PepperFlashRendererHost> weak_factory_; | 67 base::WeakPtrFactory<PepperFlashRendererHost> weak_factory_; |
| 66 | 68 |
| 67 DISALLOW_COPY_AND_ASSIGN(PepperFlashRendererHost); | 69 DISALLOW_COPY_AND_ASSIGN(PepperFlashRendererHost); |
| 68 }; | 70 }; |
| 69 | 71 |
| 70 #endif // CHROME_RENDERER_PEPPER_PEPPER_FLASH_RENDERER_HOST_H_ | 72 #endif // CHROME_RENDERER_PEPPER_PEPPER_FLASH_RENDERER_HOST_H_ |
| OLD | NEW |