OLD | NEW |
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 Loading... |
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 |
OLD | NEW |