| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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 CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_RENDERER_CONNECTION_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_RENDERER_CONNECTION_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_RENDERER_CONNECTION_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_RENDERER_CONNECTION_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "content/public/browser/browser_message_filter.h" | 13 #include "content/public/browser/browser_message_filter.h" |
| 14 #include "ppapi/c/pp_instance.h" | 14 #include "ppapi/c/pp_instance.h" |
| 15 #include "ppapi/c/pp_resource.h" | 15 #include "ppapi/c/pp_resource.h" |
| 16 | 16 |
| 17 class GURL; | |
| 18 | |
| 19 namespace ppapi { | 17 namespace ppapi { |
| 20 namespace proxy { | 18 namespace proxy { |
| 21 class ResourceMessageCallParams; | 19 class ResourceMessageCallParams; |
| 22 } | 20 } |
| 23 } | 21 } |
| 24 | 22 |
| 25 namespace content { | 23 namespace content { |
| 26 | 24 |
| 27 class BrowserPpapiHostImpl; | 25 class BrowserPpapiHostImpl; |
| 28 struct PepperRendererInstanceData; | 26 struct PepperRendererInstanceData; |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 // with the browser when running in-process but it means that plugin-specific | 63 // with the browser when running in-process but it means that plugin-specific |
| 66 // information (like the plugin name) won't be available. | 64 // information (like the plugin name) won't be available. |
| 67 std::unique_ptr<BrowserPpapiHostImpl> in_process_host_; | 65 std::unique_ptr<BrowserPpapiHostImpl> in_process_host_; |
| 68 | 66 |
| 69 DISALLOW_COPY_AND_ASSIGN(PepperRendererConnection); | 67 DISALLOW_COPY_AND_ASSIGN(PepperRendererConnection); |
| 70 }; | 68 }; |
| 71 | 69 |
| 72 } // namespace content | 70 } // namespace content |
| 73 | 71 |
| 74 #endif // CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_RENDERER_CONNECTION_H_ | 72 #endif // CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_RENDERER_CONNECTION_H_ |
| OLD | NEW |