OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_PLUGIN_DATA_REMOVER_HELPER_H_ |
| 6 #define CHROME_BROWSER_PLUGIN_DATA_REMOVER_HELPER_H_ |
| 7 #pragma once |
| 8 |
| 9 #include "base/ref_counted.h" |
| 10 #include "chrome/browser/prefs/pref_member.h" |
| 11 |
| 12 class Profile; |
| 13 |
| 14 // Helper class modeled after BooleanPrefMember to (asynchronously) update |
| 15 // the preference specifying whether clearing plug-in data is supported |
| 16 // by an installed plug-in. |
| 17 // It should only be used from the UI thread. The client has to make sure that |
| 18 // the passed PrefService outlives this object. |
| 19 class PluginDataRemoverHelper { |
| 20 public: |
| 21 PluginDataRemoverHelper(); |
| 22 ~PluginDataRemoverHelper(); |
| 23 |
| 24 // Binds this object to the |pref_name| preference in |prefs|, notifying |
| 25 // |observer| if the value changes. |
| 26 // This fires off a request to the NPAPI::PluginList (via PluginDataRemover) |
| 27 // on the FILE thread to get the list of installed plug-ins. |
| 28 void Init(const char* pref_name, |
| 29 PrefService* prefs, |
| 30 NotificationObserver* observer); |
| 31 |
| 32 bool GetValue() const { return pref_.GetValue(); } |
| 33 |
| 34 private: |
| 35 class Internal; |
| 36 |
| 37 BooleanPrefMember pref_; |
| 38 scoped_refptr<Internal> internal_; |
| 39 |
| 40 DISALLOW_COPY_AND_ASSIGN(PluginDataRemoverHelper); |
| 41 }; |
| 42 |
| 43 #endif // CHROME_BROWSER_PLUGIN_DATA_REMOVER_HELPER_H_ |
OLD | NEW |