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

Unified Diff: chrome/browser/plugin_data_remover_helper.cc

Issue 10933044: Move chrome/browser/plugin_* to chrome/browser/plugins/ (Closed) Base URL: http://git.chromium.org/chromium/src.git@remove_plugin_group
Patch Set: . Created 8 years, 3 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
« no previous file with comments | « chrome/browser/plugin_data_remover_helper.h ('k') | chrome/browser/plugin_finder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/plugin_data_remover_helper.cc
diff --git a/chrome/browser/plugin_data_remover_helper.cc b/chrome/browser/plugin_data_remover_helper.cc
deleted file mode 100644
index da1828f5b84777ffbb788f176a8240c836e3f49c..0000000000000000000000000000000000000000
--- a/chrome/browser/plugin_data_remover_helper.cc
+++ /dev/null
@@ -1,21 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/browser/plugin_data_remover_helper.h"
-
-#include "chrome/browser/plugin_prefs.h"
-#include "content/public/browser/plugin_data_remover.h"
-#include "webkit/plugins/webplugininfo.h"
-
-// static
-bool PluginDataRemoverHelper::IsSupported(PluginPrefs* plugin_prefs) {
- std::vector<webkit::WebPluginInfo> plugins;
- content::PluginDataRemover::GetSupportedPlugins(&plugins);
- for (std::vector<webkit::WebPluginInfo>::const_iterator it = plugins.begin();
- it != plugins.end(); ++it) {
- if (plugin_prefs->IsPluginEnabled(*it))
- return true;
- }
- return false;
-}
« no previous file with comments | « chrome/browser/plugin_data_remover_helper.h ('k') | chrome/browser/plugin_finder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698