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

Side by Side Diff: webkit/module.cc

Issue 5828003: Move the Pepper implementation from webkit/glue/plugins/pepper_* to... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years 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/module.h ('k') | webkit/plugins/plugin_switches.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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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/glue/plugins/pepper_plugin_module.h" 5 #include "webkit/glue/plugins/pepper_plugin_module.h"
6 6
7 #include <set> 7 #include <set>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/message_loop.h" 10 #include "base/message_loop.h"
(...skipping 472 matching lines...) Expand 10 before | Expand all | Expand 10 after
483 DCHECK(!out_of_process_proxy_.get()) << "Don't call for proxied modules."; 483 DCHECK(!out_of_process_proxy_.get()) << "Don't call for proxied modules.";
484 int retval = entry_points_.initialize_module(pp_module(), &GetInterface); 484 int retval = entry_points_.initialize_module(pp_module(), &GetInterface);
485 if (retval != 0) { 485 if (retval != 0) {
486 LOG(WARNING) << "PPP_InitializeModule returned failure " << retval; 486 LOG(WARNING) << "PPP_InitializeModule returned failure " << retval;
487 return false; 487 return false;
488 } 488 }
489 return true; 489 return true;
490 } 490 }
491 491
492 } // namespace pepper 492 } // namespace pepper
OLDNEW
« no previous file with comments | « webkit/module.h ('k') | webkit/plugins/plugin_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698