From 3627aa3fa39aef7cbcc3dfd67b51e8fb9efa68c5 Mon Sep 17 00:00:00 2001 From: "ddorwin@chromium.org" Date: Tue, 17 Sep 2013 22:32:51 +0000 Subject: Check whether the Pepper CDM is available before adding the key system. This adds a synchronous IPC from chrome_key_systems.cc to the browser process to check with the PluginService. BUG=224793 TEST=existing IsTypeSupported browser tests and new negative tests Review URL: https://chromiumcodereview.appspot.com/23828007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@223719 0039d316-1c4b-4281-b951-d872f2087c98 --- content/browser/plugin_service_impl.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'content/browser/plugin_service_impl.cc') diff --git a/content/browser/plugin_service_impl.cc b/content/browser/plugin_service_impl.cc index 5a79f7d..8ffea2d 100644 --- a/content/browser/plugin_service_impl.cc +++ b/content/browser/plugin_service_impl.cc @@ -658,7 +658,7 @@ void PluginServiceImpl::RegisterPepperPlugins() { PepperPluginInfo* PluginServiceImpl::GetRegisteredPpapiPluginInfo( const base::FilePath& plugin_path) { PepperPluginInfo* info = NULL; - for (size_t i = 0; i < ppapi_plugins_.size(); i++) { + for (size_t i = 0; i < ppapi_plugins_.size(); ++i) { if (ppapi_plugins_[i].path == plugin_path) { info = &ppapi_plugins_[i]; break; -- cgit v1.1