| 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 WEBKIT_PLUGINS_PPAPI_MOCK_PLUGIN_DELEGATE_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_MOCK_PLUGIN_DELEGATE_H_ |
| 6 #define WEBKIT_PLUGINS_PPAPI_MOCK_PLUGIN_DELEGATE_H_ | 6 #define CONTENT_RENDERER_PEPPER_MOCK_PLUGIN_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "webkit/plugins/ppapi/plugin_delegate.h" | 8 #include "content/renderer/pepper/plugin_delegate.h" |
| 9 | 9 |
| 10 struct PP_NetAddress_Private; | 10 struct PP_NetAddress_Private; |
| 11 namespace ppapi { class PPB_X509Certificate_Fields; } | 11 namespace ppapi { class PPB_X509Certificate_Fields; } |
| 12 | 12 |
| 13 namespace webkit { | 13 namespace webkit { |
| 14 namespace ppapi { | 14 namespace ppapi { |
| 15 | 15 |
| 16 class MockPluginDelegate : public PluginDelegate { | 16 class MockPluginDelegate : public PluginDelegate { |
| 17 public: | 17 public: |
| 18 MockPluginDelegate(); | 18 MockPluginDelegate(); |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 const base::FilePath& path, | 187 const base::FilePath& path, |
| 188 ::ppapi::PpapiPermissions permissions, | 188 ::ppapi::PpapiPermissions permissions, |
| 189 const IPC::ChannelHandle& channel_handle, | 189 const IPC::ChannelHandle& channel_handle, |
| 190 base::ProcessId plugin_pid, | 190 base::ProcessId plugin_pid, |
| 191 int plugin_child_id); | 191 int plugin_child_id); |
| 192 }; | 192 }; |
| 193 | 193 |
| 194 } // namespace ppapi | 194 } // namespace ppapi |
| 195 } // namespace webkit | 195 } // namespace webkit |
| 196 | 196 |
| 197 #endif // WEBKIT_PLUGINS_PPAPI_MOCK_PLUGIN_DELEGATE_H_ | 197 #endif // CONTENT_RENDERER_PEPPER_MOCK_PLUGIN_DELEGATE_H_ |
| OLD | NEW |