Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(761)

Side by Side Diff: webkit/plugins/ppapi/mock_plugin_delegate.cc

Issue 9405038: Add PPAPI interface for secure sockets in flash (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « webkit/plugins/ppapi/mock_plugin_delegate.h ('k') | webkit/plugins/ppapi/plugin_delegate.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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::X509CertificateParseDER(
318 const std::vector<char>& der,
319 PPB_X509Certificate_Fields* fields) {
320 }
321
317 int32_t MockPluginDelegate::ShowContextMenu( 322 int32_t MockPluginDelegate::ShowContextMenu(
318 PluginInstance* instance, 323 PluginInstance* instance,
319 webkit::ppapi::PPB_Flash_Menu_Impl* menu, 324 webkit::ppapi::PPB_Flash_Menu_Impl* menu,
320 const gfx::Point& position) { 325 const gfx::Point& position) {
321 return PP_ERROR_FAILED; 326 return PP_ERROR_FAILED;
322 } 327 }
323 328
324 FullscreenContainer* MockPluginDelegate::CreateFullscreenContainer( 329 FullscreenContainer* MockPluginDelegate::CreateFullscreenContainer(
325 PluginInstance* instance) { 330 PluginInstance* instance) {
326 return NULL; 331 return NULL;
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
411 return -1; 416 return -1;
412 } 417 }
413 418
414 webkit_glue::ClipboardClient* 419 webkit_glue::ClipboardClient*
415 MockPluginDelegate::CreateClipboardClient() const { 420 MockPluginDelegate::CreateClipboardClient() const {
416 return NULL; 421 return NULL;
417 } 422 }
418 423
419 } // namespace ppapi 424 } // namespace ppapi
420 } // namespace webkit 425 } // namespace webkit
OLDNEW
« no previous file with comments | « webkit/plugins/ppapi/mock_plugin_delegate.h ('k') | webkit/plugins/ppapi/plugin_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698