| Index: chrome/browser/policy/url_blacklist_manager.h
 | 
| diff --git a/chrome/browser/policy/url_blacklist_manager.h b/chrome/browser/policy/url_blacklist_manager.h
 | 
| index 9bbf47c565e1465201ec86ca83380fcd3b37df1c..b2f6f83f8b24fd6079ee64a09b6bae89a61a4394 100644
 | 
| --- a/chrome/browser/policy/url_blacklist_manager.h
 | 
| +++ b/chrome/browser/policy/url_blacklist_manager.h
 | 
| @@ -15,7 +15,6 @@
 | 
|  #include "base/memory/scoped_ptr.h"
 | 
|  #include "base/memory/weak_ptr.h"
 | 
|  #include "base/prefs/public/pref_change_registrar.h"
 | 
| -#include "base/prefs/public/pref_observer.h"
 | 
|  #include "chrome/common/extensions/matcher/url_matcher.h"
 | 
|  
 | 
|  class GURL;
 | 
| @@ -113,7 +112,7 @@ class URLBlacklist {
 | 
|  // exists in UI, then a potential destruction on IO will come after any task
 | 
|  // posted to IO from that method on UI. This is used to go through IO before
 | 
|  // the actual update starts, and grab a WeakPtr.
 | 
| -class URLBlacklistManager : public PrefObserver {
 | 
| +class URLBlacklistManager {
 | 
|   public:
 | 
|    // Must be constructed on the UI thread.
 | 
|    explicit URLBlacklistManager(PrefService* pref_service);
 | 
| @@ -148,9 +147,6 @@ class URLBlacklistManager : public PrefObserver {
 | 
|                    scoped_ptr<base::ListValue> allow);
 | 
|  
 | 
|   private:
 | 
| -  virtual void OnPreferenceChanged(PrefServiceBase* service,
 | 
| -                                   const std::string& pref_name) OVERRIDE;
 | 
| -
 | 
|    // ---------
 | 
|    // UI thread
 | 
|    // ---------
 | 
| 
 |