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 #include "webkit/plugins/ppapi/mock_plugin_delegate.h" | 5 #include "webkit/plugins/ppapi/mock_plugin_delegate.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "base/message_loop_proxy.h" | 8 #include "base/message_loop_proxy.h" |
9 #include "ppapi/c/pp_errors.h" | 9 #include "ppapi/c/pp_errors.h" |
10 #include "ppapi/shared_impl/ppapi_preferences.h" | 10 #include "ppapi/shared_impl/ppapi_preferences.h" |
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 int32_t backlog) { | 307 int32_t backlog) { |
308 } | 308 } |
309 | 309 |
310 void MockPluginDelegate::TCPServerSocketAccept(uint32 real_socket_id) { | 310 void MockPluginDelegate::TCPServerSocketAccept(uint32 real_socket_id) { |
311 } | 311 } |
312 | 312 |
313 void MockPluginDelegate::TCPServerSocketStopListening(uint32 real_socket_id, | 313 void MockPluginDelegate::TCPServerSocketStopListening(uint32 real_socket_id, |
314 uint32 temp_socket_id) { | 314 uint32 temp_socket_id) { |
315 } | 315 } |
316 | 316 |
| 317 void MockPluginDelegate::RegisterHostResolver( |
| 318 ::ppapi::PPB_HostResolver_Shared* host_resolver, |
| 319 uint32 host_resolver_id) { |
| 320 } |
| 321 |
| 322 void MockPluginDelegate::HostResolverResolve( |
| 323 uint32 host_resolver_id, |
| 324 const ::ppapi::HostPortPair& host_port, |
| 325 const PP_HostResolver_Private_Hint* hint) { |
| 326 } |
| 327 |
| 328 void MockPluginDelegate::UnregisterHostResolver(uint32 host_resolver_id) { |
| 329 } |
| 330 |
317 bool MockPluginDelegate::AddNetworkListObserver( | 331 bool MockPluginDelegate::AddNetworkListObserver( |
318 webkit_glue::NetworkListObserver* observer) { | 332 webkit_glue::NetworkListObserver* observer) { |
319 return false; | 333 return false; |
320 } | 334 } |
321 | 335 |
322 void MockPluginDelegate::RemoveNetworkListObserver( | 336 void MockPluginDelegate::RemoveNetworkListObserver( |
323 webkit_glue::NetworkListObserver* observer) { | 337 webkit_glue::NetworkListObserver* observer) { |
324 } | 338 } |
325 | 339 |
326 int32_t MockPluginDelegate::ShowContextMenu( | 340 int32_t MockPluginDelegate::ShowContextMenu( |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
420 return -1; | 434 return -1; |
421 } | 435 } |
422 | 436 |
423 webkit_glue::ClipboardClient* | 437 webkit_glue::ClipboardClient* |
424 MockPluginDelegate::CreateClipboardClient() const { | 438 MockPluginDelegate::CreateClipboardClient() const { |
425 return NULL; | 439 return NULL; |
426 } | 440 } |
427 | 441 |
428 } // namespace ppapi | 442 } // namespace ppapi |
429 } // namespace webkit | 443 } // namespace webkit |
OLD | NEW |