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

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

Issue 8275012: Remove RemoteAccessClientFirewallTraversal policy and code paths. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Re-rebase Created 9 years, 2 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/plugin_delegate.h ('k') | webkit/plugins/ppapi/ppapi_plugin_instance.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 10 matching lines...) Expand all
21 #include "ppapi/c/dev/ppb_crypto_dev.h" 21 #include "ppapi/c/dev/ppb_crypto_dev.h"
22 #include "ppapi/c/dev/ppb_cursor_control_dev.h" 22 #include "ppapi/c/dev/ppb_cursor_control_dev.h"
23 #include "ppapi/c/dev/ppb_directory_reader_dev.h" 23 #include "ppapi/c/dev/ppb_directory_reader_dev.h"
24 #include "ppapi/c/dev/ppb_file_chooser_dev.h" 24 #include "ppapi/c/dev/ppb_file_chooser_dev.h"
25 #include "ppapi/c/dev/ppb_find_dev.h" 25 #include "ppapi/c/dev/ppb_find_dev.h"
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_query_policy_dev.h"
32 #include "ppapi/c/dev/ppb_scrollbar_dev.h" 31 #include "ppapi/c/dev/ppb_scrollbar_dev.h"
33 #include "ppapi/c/dev/ppb_surface_3d_dev.h" 32 #include "ppapi/c/dev/ppb_surface_3d_dev.h"
34 #include "ppapi/c/dev/ppb_testing_dev.h" 33 #include "ppapi/c/dev/ppb_testing_dev.h"
35 #include "ppapi/c/dev/ppb_text_input_dev.h" 34 #include "ppapi/c/dev/ppb_text_input_dev.h"
36 #include "ppapi/c/dev/ppb_transport_dev.h" 35 #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"
(...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after
542 int retval = entry_points.initialize_module(pp_module(), &GetInterface); 541 int retval = entry_points.initialize_module(pp_module(), &GetInterface);
543 if (retval != 0) { 542 if (retval != 0) {
544 LOG(WARNING) << "PPP_InitializeModule returned failure " << retval; 543 LOG(WARNING) << "PPP_InitializeModule returned failure " << retval;
545 return false; 544 return false;
546 } 545 }
547 return true; 546 return true;
548 } 547 }
549 548
550 } // namespace ppapi 549 } // namespace ppapi
551 } // namespace webkit 550 } // namespace webkit
OLDNEW
« no previous file with comments | « webkit/plugins/ppapi/plugin_delegate.h ('k') | webkit/plugins/ppapi/ppapi_plugin_instance.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698