| 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_PUBLIC_RENDERER_RENDERER_PPAPI_HOST_H_ | 5 #ifndef CONTENT_PUBLIC_RENDERER_RENDERER_PPAPI_HOST_H_ |
| 6 #define CONTENT_PUBLIC_RENDERER_RENDERER_PPAPI_HOST_H_ | 6 #define CONTENT_PUBLIC_RENDERER_RENDERER_PPAPI_HOST_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/callback_forward.h" | 10 #include "base/callback_forward.h" |
| 11 #include "base/files/file.h" | 11 #include "base/files/file.h" |
| 12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 13 #include "base/memory/shared_memory.h" | 13 #include "base/memory/shared_memory.h" |
| 14 #include "base/process/process.h" | 14 #include "base/process/process.h" |
| 15 #include "content/common/content_export.h" | 15 #include "content/common/content_export.h" |
| 16 #include "ipc/ipc_platform_file.h" | 16 #include "ipc/ipc_platform_file.h" |
| 17 #include "ppapi/c/pp_instance.h" | 17 #include "ppapi/c/pp_instance.h" |
| 18 #include "url/gurl.h" | 18 #include "url/gurl.h" |
| 19 | 19 |
| 20 namespace base { | |
| 21 class FilePath; | |
| 22 } | |
| 23 | |
| 24 namespace gfx { | 20 namespace gfx { |
| 25 class Point; | 21 class Point; |
| 26 } | 22 } |
| 27 | 23 |
| 28 namespace IPC { | 24 namespace IPC { |
| 29 class Message; | 25 class Message; |
| 30 } | 26 } |
| 31 | 27 |
| 32 namespace ppapi { | 28 namespace ppapi { |
| 33 namespace host { | 29 namespace host { |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 // interface. Consider changing them to static helpers. | 163 // interface. Consider changing them to static helpers. |
| 168 virtual GURL GetDocumentURL(PP_Instance instance) const = 0; | 164 virtual GURL GetDocumentURL(PP_Instance instance) const = 0; |
| 169 | 165 |
| 170 protected: | 166 protected: |
| 171 virtual ~RendererPpapiHost() {} | 167 virtual ~RendererPpapiHost() {} |
| 172 }; | 168 }; |
| 173 | 169 |
| 174 } // namespace content | 170 } // namespace content |
| 175 | 171 |
| 176 #endif // CONTENT_PUBLIC_RENDERER_RENDERER_PPAPI_HOST_H_ | 172 #endif // CONTENT_PUBLIC_RENDERER_RENDERER_PPAPI_HOST_H_ |
| OLD | NEW |