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

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

Issue 10454058: Remove PPB_Transport_Dev API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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/glue/webkit_glue.gypi ('k') | webkit/plugins/ppapi/ppb_transport_impl.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/plugin_module.h" 5 #include "webkit/plugins/ppapi/plugin_module.h"
6 6
7 #include <set> 7 #include <set>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
(...skipping 15 matching lines...) Expand all
26 #include "ppapi/c/dev/ppb_font_dev.h" 26 #include "ppapi/c/dev/ppb_font_dev.h"
27 #include "ppapi/c/dev/ppb_fullscreen_dev.h" 27 #include "ppapi/c/dev/ppb_fullscreen_dev.h"
28 #include "ppapi/c/dev/ppb_gles_chromium_texture_mapping_dev.h" 28 #include "ppapi/c/dev/ppb_gles_chromium_texture_mapping_dev.h"
29 #include "ppapi/c/dev/ppb_layer_compositor_dev.h" 29 #include "ppapi/c/dev/ppb_layer_compositor_dev.h"
30 #include "ppapi/c/dev/ppb_memory_dev.h" 30 #include "ppapi/c/dev/ppb_memory_dev.h"
31 #include "ppapi/c/dev/ppb_opengles2ext_dev.h" 31 #include "ppapi/c/dev/ppb_opengles2ext_dev.h"
32 #include "ppapi/c/dev/ppb_resource_array_dev.h" 32 #include "ppapi/c/dev/ppb_resource_array_dev.h"
33 #include "ppapi/c/dev/ppb_scrollbar_dev.h" 33 #include "ppapi/c/dev/ppb_scrollbar_dev.h"
34 #include "ppapi/c/dev/ppb_testing_dev.h" 34 #include "ppapi/c/dev/ppb_testing_dev.h"
35 #include "ppapi/c/dev/ppb_text_input_dev.h" 35 #include "ppapi/c/dev/ppb_text_input_dev.h"
36 #include "ppapi/c/dev/ppb_transport_dev.h"
37 #include "ppapi/c/dev/ppb_url_util_dev.h" 36 #include "ppapi/c/dev/ppb_url_util_dev.h"
38 #include "ppapi/c/dev/ppb_var_deprecated.h" 37 #include "ppapi/c/dev/ppb_var_deprecated.h"
39 #include "ppapi/c/dev/ppb_video_capture_dev.h" 38 #include "ppapi/c/dev/ppb_video_capture_dev.h"
40 #include "ppapi/c/dev/ppb_video_decoder_dev.h" 39 #include "ppapi/c/dev/ppb_video_decoder_dev.h"
41 #include "ppapi/c/dev/ppb_video_layer_dev.h" 40 #include "ppapi/c/dev/ppb_video_layer_dev.h"
42 #include "ppapi/c/dev/ppb_widget_dev.h" 41 #include "ppapi/c/dev/ppb_widget_dev.h"
43 #include "ppapi/c/dev/ppb_zoom_dev.h" 42 #include "ppapi/c/dev/ppb_zoom_dev.h"
44 #include "ppapi/c/pp_module.h" 43 #include "ppapi/c/pp_module.h"
45 #include "ppapi/c/pp_resource.h" 44 #include "ppapi/c/pp_resource.h"
46 #include "ppapi/c/pp_var.h" 45 #include "ppapi/c/pp_var.h"
(...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
593 int retval = entry_points.initialize_module(pp_module(), &GetInterface); 592 int retval = entry_points.initialize_module(pp_module(), &GetInterface);
594 if (retval != 0) { 593 if (retval != 0) {
595 LOG(WARNING) << "PPP_InitializeModule returned failure " << retval; 594 LOG(WARNING) << "PPP_InitializeModule returned failure " << retval;
596 return false; 595 return false;
597 } 596 }
598 return true; 597 return true;
599 } 598 }
600 599
601 } // namespace ppapi 600 } // namespace ppapi
602 } // namespace webkit 601 } // namespace webkit
OLDNEW
« no previous file with comments | « webkit/glue/webkit_glue.gypi ('k') | webkit/plugins/ppapi/ppb_transport_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698