| 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 CONTENT_BROWSER_PEPPER_CONTENT_BROWSER_PEPPER_HOST_FACTORY_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_PEPPER_CONTENT_BROWSER_PEPPER_HOST_FACTORY
_H_ |
| 6 #define CONTENT_BROWSER_PEPPER_CONTENT_BROWSER_PEPPER_HOST_FACTORY_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_PEPPER_CONTENT_BROWSER_PEPPER_HOST_FACTORY
_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "net/socket/tcp_socket.h" | 11 #include "net/socket/tcp_socket.h" |
| 12 #include "ppapi/c/pp_resource.h" | 12 #include "ppapi/c/pp_resource.h" |
| 13 #include "ppapi/host/host_factory.h" | 13 #include "ppapi/host/host_factory.h" |
| 14 #include "ppapi/shared_impl/ppb_tcp_socket_shared.h" | 14 #include "ppapi/shared_impl/ppb_tcp_socket_shared.h" |
| 15 | 15 |
| 16 namespace ppapi { | 16 namespace ppapi { |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 const ppapi::PpapiPermissions& GetPermissions() const; | 50 const ppapi::PpapiPermissions& GetPermissions() const; |
| 51 | 51 |
| 52 // Non-owning pointer. | 52 // Non-owning pointer. |
| 53 BrowserPpapiHostImpl* host_; | 53 BrowserPpapiHostImpl* host_; |
| 54 | 54 |
| 55 DISALLOW_COPY_AND_ASSIGN(ContentBrowserPepperHostFactory); | 55 DISALLOW_COPY_AND_ASSIGN(ContentBrowserPepperHostFactory); |
| 56 }; | 56 }; |
| 57 | 57 |
| 58 } // namespace content | 58 } // namespace content |
| 59 | 59 |
| 60 #endif // CONTENT_BROWSER_PEPPER_CONTENT_BROWSER_PEPPER_HOST_FACTORY_H_ | 60 #endif // CONTENT_BROWSER_RENDERER_HOST_PEPPER_CONTENT_BROWSER_PEPPER_HOST_FACT
ORY_H_ |
| OLD | NEW |