Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Unified Diff: chrome/browser/policy/policy_browsertest.cc

Issue 1862513003: Remove NPAPI from browser and utility (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/policy/policy_browsertest.cc
diff --git a/chrome/browser/policy/policy_browsertest.cc b/chrome/browser/policy/policy_browsertest.cc
index a8db7f9aa5c67a7bf101daf5e01690ff9f3c47e2..3dafed1502d8a315296c21e9b0b8e1a03b2bfa95 100644
--- a/chrome/browser/policy/policy_browsertest.cc
+++ b/chrome/browser/policy/policy_browsertest.cc
@@ -506,8 +506,7 @@ bool SetPluginEnabled(PluginPrefs* plugin_prefs,
int CountPluginsOnIOThread() {
int count = 0;
for (content::BrowserChildProcessHostIterator iter; !iter.Done(); ++iter) {
- if (iter.GetData().process_type == content::PROCESS_TYPE_PLUGIN ||
- iter.GetData().process_type == content::PROCESS_TYPE_PPAPI_PLUGIN) {
+ if (iter.GetData().process_type == content::PROCESS_TYPE_PPAPI_PLUGIN) {
count++;
}
}

Powered by Google App Engine
This is Rietveld 408576698