summaryrefslogtreecommitdiffstats
path: root/chrome/browser/plugin_updater.cc
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-18 17:15:00 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-18 17:15:00 +0000
commitcebc3dc5b2649fba2dd4e5c38197f367cbe296ad (patch)
tree5fdabab303791a373f741fed1caf15b4b967012f /chrome/browser/plugin_updater.cc
parent197d77b84fe78fd08bdfc72553b297111142a9f2 (diff)
downloadchromium_src-cebc3dc5b2649fba2dd4e5c38197f367cbe296ad.zip
chromium_src-cebc3dc5b2649fba2dd4e5c38197f367cbe296ad.tar.gz
chromium_src-cebc3dc5b2649fba2dd4e5c38197f367cbe296ad.tar.bz2
Move PepperPluginRegistry to content, while leaving the Chrome specific bits (NaCl, registration of Chrome plugins like pdf/remoting/flash) behind.
Review URL: http://codereview.chromium.org/6869051 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81959 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/plugin_updater.cc')
-rw-r--r--chrome/browser/plugin_updater.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/browser/plugin_updater.cc b/chrome/browser/plugin_updater.cc
index 44c7682..2673af4 100644
--- a/chrome/browser/plugin_updater.cc
+++ b/chrome/browser/plugin_updater.cc
@@ -15,8 +15,8 @@
#include "chrome/browser/prefs/pref_service.h"
#include "chrome/browser/prefs/scoped_user_pref_update.h"
#include "chrome/browser/profiles/profile.h"
+#include "chrome/common/chrome_content_client.h"
#include "chrome/common/chrome_paths.h"
-#include "chrome/common/pepper_plugin_registry.h"
#include "chrome/common/pref_names.h"
#include "content/browser/browser_thread.h"
#include "content/common/notification_service.h"
@@ -141,7 +141,8 @@ void PluginUpdater::UpdatePluginGroupsStateFromPrefs(Profile* profile) {
bool force_enable_internal_pdf = false;
bool internal_pdf_enabled = false;
- string16 pdf_group_name = ASCIIToUTF16(PepperPluginRegistry::kPDFPluginName);
+ string16 pdf_group_name =
+ ASCIIToUTF16(chrome::ChromeContentClient::kPDFPluginName);
FilePath pdf_path;
PathService::Get(chrome::FILE_PDF_PLUGIN, &pdf_path);
FilePath::StringType pdf_path_str = pdf_path.value();