diff options
author | brettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-05 15:53:50 +0000 |
---|---|---|
committer | brettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-05 15:53:50 +0000 |
commit | 65033905857424eff7914fadcc57d88beff5f631 (patch) | |
tree | 3788711455482b3f734738892825a6245dcd3ca2 /webkit/plugins/ppapi/plugin_module.cc | |
parent | cbb55b773f44aa91b85b64b6c2c644925b79336b (diff) | |
download | chromium_src-65033905857424eff7914fadcc57d88beff5f631.zip chromium_src-65033905857424eff7914fadcc57d88beff5f631.tar.gz chromium_src-65033905857424eff7914fadcc57d88beff5f631.tar.bz2 |
Revert 73427 (set the name of the PPAPI plugin correcetly) and 73916 (minor bugfix) to see if it is responsible for the startup performance regression.
TEST=startup perf XP
Review URL: http://codereview.chromium.org/6368120
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@73931 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/plugins/ppapi/plugin_module.cc')
-rw-r--r-- | webkit/plugins/ppapi/plugin_module.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/webkit/plugins/ppapi/plugin_module.cc b/webkit/plugins/ppapi/plugin_module.cc index a8d804a..332770ff 100644 --- a/webkit/plugins/ppapi/plugin_module.cc +++ b/webkit/plugins/ppapi/plugin_module.cc @@ -360,12 +360,10 @@ PluginModule::EntryPoints::EntryPoints() // PluginModule ---------------------------------------------------------------- -PluginModule::PluginModule(const std::string& name, - PluginDelegate::ModuleLifetime* lifetime_delegate) +PluginModule::PluginModule(PluginDelegate::ModuleLifetime* lifetime_delegate) : lifetime_delegate_(lifetime_delegate), callback_tracker_(new CallbackTracker), - library_(NULL), - name_(name) { + library_(NULL) { pp_module_ = ResourceTracker::Get()->AddModule(this); GetMainThreadMessageLoop(); // Initialize the main thread message loop. GetLivePluginSet()->insert(this); |