| Index: webkit/plugins/ppapi/plugin_module.cc
|
| diff --git a/webkit/plugins/ppapi/plugin_module.cc b/webkit/plugins/ppapi/plugin_module.cc
|
| index accc029f4e66ed1eea18746773ffda701dd8e069..3da896ea02ae2545e44a1fb0e64ea9ae7b307dd5 100644
|
| --- a/webkit/plugins/ppapi/plugin_module.cc
|
| +++ b/webkit/plugins/ppapi/plugin_module.cc
|
| @@ -460,6 +460,14 @@ PluginModule::~PluginModule() {
|
| // previous parts of the destructor.
|
| }
|
|
|
| +void PluginModule::SetEmbedderState(scoped_ptr<EmbedderState> state) {
|
| + embedder_state_ = state.Pass();
|
| +}
|
| +
|
| +PluginModule::EmbedderState* PluginModule::GetEmbedderState() {
|
| + return embedder_state_.get();
|
| +}
|
| +
|
| bool PluginModule::InitAsInternalPlugin(const EntryPoints& entry_points) {
|
| if (InitializeModule(entry_points)) {
|
| entry_points_ = entry_points;
|
|
|