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 "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
9 #include "base/platform_file.h" | 9 #include "base/platform_file.h" |
10 #include "base/process.h" | 10 #include "base/process.h" |
(...skipping 14 matching lines...) Expand all Loading... |
25 struct ChannelHandle; | 25 struct ChannelHandle; |
26 } | 26 } |
27 | 27 |
28 namespace ppapi { | 28 namespace ppapi { |
29 class PpapiPermissions; | 29 class PpapiPermissions; |
30 namespace host { | 30 namespace host { |
31 class PpapiHost; | 31 class PpapiHost; |
32 } | 32 } |
33 } | 33 } |
34 | 34 |
35 namespace webkit { | |
36 namespace ppapi { | |
37 class PluginInstance; | |
38 } | |
39 } | |
40 | |
41 namespace WebKit { | 35 namespace WebKit { |
42 class WebPluginContainer; | 36 class WebPluginContainer; |
43 } | 37 } |
44 | 38 |
45 namespace webkit { | 39 namespace webkit { |
46 namespace ppapi { | 40 namespace ppapi { |
47 class PluginInstance; | 41 class PluginInstance; |
48 class PluginModule; | 42 class PluginModule; |
49 } | 43 } |
50 } | 44 } |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 // Returns true if the plugin is running in process. | 132 // Returns true if the plugin is running in process. |
139 virtual bool IsRunningInProcess() const = 0; | 133 virtual bool IsRunningInProcess() const = 0; |
140 | 134 |
141 protected: | 135 protected: |
142 virtual ~RendererPpapiHost() {} | 136 virtual ~RendererPpapiHost() {} |
143 }; | 137 }; |
144 | 138 |
145 } // namespace content | 139 } // namespace content |
146 | 140 |
147 #endif // CONTENT_PUBLIC_RENDERER_RENDERER_PPAPI_HOST_H_ | 141 #endif // CONTENT_PUBLIC_RENDERER_RENDERER_PPAPI_HOST_H_ |
OLD | NEW |