diff options
author | scottbyer@chromium.org <scottbyer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-13 22:19:59 +0000 |
---|---|---|
committer | scottbyer@chromium.org <scottbyer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-13 22:19:59 +0000 |
commit | bb68a294684bdb4678d556a97e55f22e17a8f3bf (patch) | |
tree | a8b19f16cfda301ef1a4feff91095e702f36c55f /webkit | |
parent | f1b4366dc7042812f6b4f51557b6d4847727904b (diff) | |
download | chromium_src-bb68a294684bdb4678d556a97e55f22e17a8f3bf.zip chromium_src-bb68a294684bdb4678d556a97e55f22e17a8f3bf.tar.gz chromium_src-bb68a294684bdb4678d556a97e55f22e17a8f3bf.tar.bz2 |
Fix unit test to allow repeated successful runs by avoiding a function static variable in tests.
BUG=137145
TEST=run unit_tests with --gtest_filter=ComponentInstallerTest.PepperFlashCheck --gtest_repeat=2 successfully.
Review URL: https://chromiumcodereview.appspot.com/10702188
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@146670 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/plugins/ppapi/plugin_module.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/webkit/plugins/ppapi/plugin_module.cc b/webkit/plugins/ppapi/plugin_module.cc index 0efcbf7..8d6410e 100644 --- a/webkit/plugins/ppapi/plugin_module.cc +++ b/webkit/plugins/ppapi/plugin_module.cc @@ -426,8 +426,6 @@ PluginModule::PluginModule(const std::string& name, memset(&entry_points_, 0, sizeof(entry_points_)); pp_module_ = HostGlobals::Get()->AddModule(this); - // Initialize the main thread message loop. - PpapiGlobals::Get()->GetMainThreadMessageLoop(); GetLivePluginSet()->insert(this); } |