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

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

Issue 13080002: Apps V2 in Pepper: introduce singleton resource ExtensionsCommon. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 8 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 | « ppapi/thunk/ppb_ext_alarms_thunk.cc ('k') | webkit/plugins/ppapi/ppapi_plugin_instance.cc » ('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 25 matching lines...) Expand all
36 #include "ppapi/c/dev/ppb_truetype_font_dev.h" 36 #include "ppapi/c/dev/ppb_truetype_font_dev.h"
37 #include "ppapi/c/dev/ppb_url_util_dev.h" 37 #include "ppapi/c/dev/ppb_url_util_dev.h"
38 #include "ppapi/c/dev/ppb_var_array_dev.h" 38 #include "ppapi/c/dev/ppb_var_array_dev.h"
39 #include "ppapi/c/dev/ppb_var_deprecated.h" 39 #include "ppapi/c/dev/ppb_var_deprecated.h"
40 #include "ppapi/c/dev/ppb_var_dictionary_dev.h" 40 #include "ppapi/c/dev/ppb_var_dictionary_dev.h"
41 #include "ppapi/c/dev/ppb_video_capture_dev.h" 41 #include "ppapi/c/dev/ppb_video_capture_dev.h"
42 #include "ppapi/c/dev/ppb_video_decoder_dev.h" 42 #include "ppapi/c/dev/ppb_video_decoder_dev.h"
43 #include "ppapi/c/dev/ppb_view_dev.h" 43 #include "ppapi/c/dev/ppb_view_dev.h"
44 #include "ppapi/c/dev/ppb_widget_dev.h" 44 #include "ppapi/c/dev/ppb_widget_dev.h"
45 #include "ppapi/c/dev/ppb_zoom_dev.h" 45 #include "ppapi/c/dev/ppb_zoom_dev.h"
46 #include "ppapi/c/extensions/dev/ppb_ext_alarms_dev.h"
46 #include "ppapi/c/pp_module.h" 47 #include "ppapi/c/pp_module.h"
47 #include "ppapi/c/pp_resource.h" 48 #include "ppapi/c/pp_resource.h"
48 #include "ppapi/c/pp_var.h" 49 #include "ppapi/c/pp_var.h"
49 #include "ppapi/c/ppb_audio.h" 50 #include "ppapi/c/ppb_audio.h"
50 #include "ppapi/c/ppb_audio_config.h" 51 #include "ppapi/c/ppb_audio_config.h"
51 #include "ppapi/c/ppb_console.h" 52 #include "ppapi/c/ppb_console.h"
52 #include "ppapi/c/ppb_core.h" 53 #include "ppapi/c/ppb_core.h"
53 #include "ppapi/c/ppb_file_io.h" 54 #include "ppapi/c/ppb_file_io.h"
54 #include "ppapi/c/ppb_file_ref.h" 55 #include "ppapi/c/ppb_file_ref.h"
55 #include "ppapi/c/ppb_file_system.h" 56 #include "ppapi/c/ppb_file_system.h"
(...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after
639 int retval = entry_points.initialize_module(pp_module(), &GetInterface); 640 int retval = entry_points.initialize_module(pp_module(), &GetInterface);
640 if (retval != 0) { 641 if (retval != 0) {
641 LOG(WARNING) << "PPP_InitializeModule returned failure " << retval; 642 LOG(WARNING) << "PPP_InitializeModule returned failure " << retval;
642 return false; 643 return false;
643 } 644 }
644 return true; 645 return true;
645 } 646 }
646 647
647 } // namespace ppapi 648 } // namespace ppapi
648 } // namespace webkit 649 } // namespace webkit
OLDNEW
« no previous file with comments | « ppapi/thunk/ppb_ext_alarms_thunk.cc ('k') | webkit/plugins/ppapi/ppapi_plugin_instance.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698