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

Unified Diff: chrome/browser/plugins/plugin_finder.h

Issue 11741003: Remove PrefServiceSimple, replacing it with PrefService and PrefRegistrySimple. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Respond to review comments. Created 7 years, 11 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/plugins/plugin_finder.h
diff --git a/chrome/browser/plugins/plugin_finder.h b/chrome/browser/plugins/plugin_finder.h
index 0b6d1dee162bd09d32cd52044fb795c2577a8dfd..c8d1aa961ef6830fc45c896d8f8d7aeeb4b9f67a 100644
--- a/chrome/browser/plugins/plugin_finder.h
+++ b/chrome/browser/plugins/plugin_finder.h
@@ -10,10 +10,10 @@
#include "base/callback.h"
#include "base/gtest_prod_util.h"
-#include "base/synchronization/lock.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/singleton.h"
#include "base/string16.h"
+#include "base/synchronization/lock.h"
#include "webkit/plugins/webplugininfo.h"
namespace base {
@@ -22,7 +22,7 @@ class DictionaryValue;
class GURL;
class PluginMetadata;
-class PrefServiceSimple;
+class PrefRegistrySimple;
#if defined(ENABLE_PLUGIN_INSTALLATION)
class PluginInstaller;
@@ -33,7 +33,7 @@ class PluginInstaller;
// After that it can be safely used on any other thread.
class PluginFinder {
public:
- static void RegisterPrefs(PrefServiceSimple* local_state);
+ static void RegisterPrefs(PrefRegistrySimple* local_state);
static PluginFinder* GetInstance();

Powered by Google App Engine
This is Rietveld 408576698