OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 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 | 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 #ifndef CHROME_BROWSER_PLUGIN_UPDATER_H_ | 5 #ifndef CHROME_BROWSER_PLUGIN_UPDATER_H_ |
6 #define CHROME_BROWSER_PLUGIN_UPDATER_H_ | 6 #define CHROME_BROWSER_PLUGIN_UPDATER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
| 9 #include <vector> |
| 10 |
9 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
10 #include "base/file_path.h" | 12 #include "base/file_path.h" |
11 #include "base/singleton.h" | 13 #include "base/singleton.h" |
12 #include "chrome/common/notification_observer.h" | 14 #include "chrome/common/notification_observer.h" |
13 #include "webkit/glue/plugins/plugin_list.h" | 15 #include "webkit/glue/plugins/plugin_list.h" |
14 | 16 |
15 class DictionaryValue; | 17 class DictionaryValue; |
16 class ListValue; | 18 class ListValue; |
17 class NotificationDetails; | 19 class NotificationDetails; |
18 class NotificationSource; | 20 class NotificationSource; |
(...skipping 30 matching lines...) Expand all Loading... |
49 PluginUpdater(); | 51 PluginUpdater(); |
50 virtual ~PluginUpdater() {} | 52 virtual ~PluginUpdater() {} |
51 | 53 |
52 // Called on the file thread to get the data necessary to update the saved | 54 // Called on the file thread to get the data necessary to update the saved |
53 // preferences. The profile pointer is only to be passed to the UI thread. | 55 // preferences. The profile pointer is only to be passed to the UI thread. |
54 static void GetPreferencesDataOnFileThread(void* profile); | 56 static void GetPreferencesDataOnFileThread(void* profile); |
55 | 57 |
56 // Called on the UI thread with the plugin data to save the preferences. | 58 // Called on the UI thread with the plugin data to save the preferences. |
57 static void OnUpdatePreferences(Profile* profile, | 59 static void OnUpdatePreferences(Profile* profile, |
58 const std::vector<WebPluginInfo>& plugins, | 60 const std::vector<WebPluginInfo>& plugins, |
59 const NPAPI::PluginList::PluginMap& groups); | 61 const std::vector<PluginGroup>& groups); |
60 | 62 |
61 // Queues sending the notification that plugin data has changed. This is done | 63 // Queues sending the notification that plugin data has changed. This is done |
62 // so that if a bunch of changes happen, we only send one notification. | 64 // so that if a bunch of changes happen, we only send one notification. |
63 void NotifyPluginStatusChanged(); | 65 void NotifyPluginStatusChanged(); |
64 | 66 |
65 // Used for the post task to notify that plugin enabled status changed. | 67 // Used for the post task to notify that plugin enabled status changed. |
66 static void OnNotifyPluginStatusChanged(); | 68 static void OnNotifyPluginStatusChanged(); |
67 | 69 |
68 static DictionaryValue* CreatePluginFileSummary(const WebPluginInfo& plugin); | 70 static DictionaryValue* CreatePluginFileSummary(const WebPluginInfo& plugin); |
69 | 71 |
70 // Force plugins to be disabled due to policy. |plugins| contains | 72 // Force plugins to be disabled due to policy. |plugins| contains |
71 // the list of StringValues of the names of the policy-disabled plugins. | 73 // the list of StringValues of the names of the policy-disabled plugins. |
72 void DisablePluginsFromPolicy(const ListValue* plugin_names); | 74 void DisablePluginsFromPolicy(const ListValue* plugin_names); |
73 | 75 |
74 // Needed to allow singleton instantiation using private constructor. | 76 // Needed to allow singleton instantiation using private constructor. |
75 friend struct DefaultSingletonTraits<PluginUpdater>; | 77 friend struct DefaultSingletonTraits<PluginUpdater>; |
76 | 78 |
77 // Note: if you change this to false from true, you must update | 79 // Note: if you change this to false from true, you must update |
78 // kPluginsEnabledInternalPDF to be a new name (i.e. add 2, 3, 4...) at end. | 80 // kPluginsEnabledInternalPDF to be a new name (i.e. add 2, 3, 4...) at end. |
79 bool enable_internal_pdf_; | 81 bool enable_internal_pdf_; |
80 | 82 |
81 bool notify_pending_; | 83 bool notify_pending_; |
82 | 84 |
83 DISALLOW_COPY_AND_ASSIGN(PluginUpdater); | 85 DISALLOW_COPY_AND_ASSIGN(PluginUpdater); |
84 }; | 86 }; |
85 | 87 |
86 #endif // CHROME_BROWSER_PLUGIN_UPDATER_H_ | 88 #endif // CHROME_BROWSER_PLUGIN_UPDATER_H_ |
OLD | NEW |