OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/plugin_data_remover_helper.h" | 5 #include "chrome/browser/plugin_data_remover_helper.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
10 #include "chrome/browser/plugin_data_remover.h" | 10 #include "chrome/browser/plugin_data_remover.h" |
11 #include "chrome/browser/prefs/pref_service.h" | 11 #include "chrome/browser/prefs/pref_service.h" |
12 #include "chrome/browser/profiles/profile.h" | 12 #include "chrome/browser/profiles/profile.h" |
| 13 #include "chrome/common/chrome_notification_types.h" |
13 #include "content/browser/browser_thread.h" | 14 #include "content/browser/browser_thread.h" |
14 #include "content/common/notification_service.h" | 15 #include "content/common/notification_service.h" |
15 | 16 |
16 // The internal class is refcounted so it can outlive PluginDataRemoverHelper. | 17 // The internal class is refcounted so it can outlive PluginDataRemoverHelper. |
17 class PluginDataRemoverHelper::Internal | 18 class PluginDataRemoverHelper::Internal |
18 : public base::RefCountedThreadSafe<PluginDataRemoverHelper::Internal> { | 19 : public base::RefCountedThreadSafe<PluginDataRemoverHelper::Internal> { |
19 public: | 20 public: |
20 Internal(const char* pref_name, PrefService* prefs) | 21 Internal(const char* pref_name, PrefService* prefs) |
21 : pref_name_(pref_name), prefs_(prefs) {} | 22 : pref_name_(pref_name), prefs_(prefs) {} |
22 | 23 |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 PluginDataRemoverHelper::~PluginDataRemoverHelper() { | 68 PluginDataRemoverHelper::~PluginDataRemoverHelper() { |
68 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); | 69 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
69 if (internal_) | 70 if (internal_) |
70 internal_->Invalidate(); | 71 internal_->Invalidate(); |
71 } | 72 } |
72 | 73 |
73 void PluginDataRemoverHelper::Init(const char* pref_name, | 74 void PluginDataRemoverHelper::Init(const char* pref_name, |
74 PrefService* prefs, | 75 PrefService* prefs, |
75 NotificationObserver* observer) { | 76 NotificationObserver* observer) { |
76 pref_.Init(pref_name, prefs, observer); | 77 pref_.Init(pref_name, prefs, observer); |
77 registrar_.Add(this, content::NOTIFICATION_PLUGIN_ENABLE_STATUS_CHANGED, | 78 registrar_.Add(this, chrome::NOTIFICATION_PLUGIN_ENABLE_STATUS_CHANGED, |
78 NotificationService::AllSources()); | 79 NotificationService::AllSources()); |
79 internal_ = make_scoped_refptr(new Internal(pref_name, prefs)); | 80 internal_ = make_scoped_refptr(new Internal(pref_name, prefs)); |
80 internal_->StartUpdate(); | 81 internal_->StartUpdate(); |
81 } | 82 } |
82 | 83 |
83 void PluginDataRemoverHelper::Observe(int type, | 84 void PluginDataRemoverHelper::Observe(int type, |
84 const NotificationSource& source, | 85 const NotificationSource& source, |
85 const NotificationDetails& details) { | 86 const NotificationDetails& details) { |
86 if (type == content::NOTIFICATION_PLUGIN_ENABLE_STATUS_CHANGED) { | 87 if (type == chrome::NOTIFICATION_PLUGIN_ENABLE_STATUS_CHANGED) { |
87 internal_->StartUpdate(); | 88 internal_->StartUpdate(); |
88 } else { | 89 } else { |
89 NOTREACHED(); | 90 NOTREACHED(); |
90 } | 91 } |
91 } | 92 } |
OLD | NEW |