diff options
author | brettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-05 21:44:31 +0000 |
---|---|---|
committer | brettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-05 21:44:31 +0000 |
commit | bbf4467a11440950f05432d3d68495c61e5623c6 (patch) | |
tree | 85a36cf931af16547a5022e2b9d6bfed76473726 /webkit/plugins/ppapi/ppapi_unittest.cc | |
parent | aee4313f4c8d0fc0ffc64aa8175a89879c25528a (diff) | |
download | chromium_src-bbf4467a11440950f05432d3d68495c61e5623c6.zip chromium_src-bbf4467a11440950f05432d3d68495c61e5623c6.tar.gz chromium_src-bbf4467a11440950f05432d3d68495c61e5623c6.tar.bz2 |
Re-land more changes from r73427 where we set the name for each module in the constructor (checking for perf regressions).
Review URL: http://codereview.chromium.org/6312177
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@73934 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/plugins/ppapi/ppapi_unittest.cc')
-rw-r--r-- | webkit/plugins/ppapi/ppapi_unittest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/plugins/ppapi/ppapi_unittest.cc b/webkit/plugins/ppapi/ppapi_unittest.cc index 7ad58c3..a9a3637 100644 --- a/webkit/plugins/ppapi/ppapi_unittest.cc +++ b/webkit/plugins/ppapi/ppapi_unittest.cc @@ -87,7 +87,7 @@ void PpapiUnittest::SetUp() { delegate_.reset(new MockPluginDelegate); // Initialize the mock module. - module_ = new PluginModule(this); + module_ = new PluginModule("Mock plugin", this); PluginModule::EntryPoints entry_points; entry_points.get_interface = &MockGetInterface; entry_points.initialize_module = &MockInitializeModule; |