| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/ui/webui/plugins_ui.h" | 5 #include "chrome/browser/ui/webui/plugins_ui.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/bind.h" | 11 #include "base/bind.h" |
| 12 #include "base/bind_helpers.h" | 12 #include "base/bind_helpers.h" |
| 13 #include "base/memory/ref_counted_memory.h" | 13 #include "base/memory/ref_counted_memory.h" |
| 14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 15 #include "base/memory/singleton.h" | 15 #include "base/memory/singleton.h" |
| 16 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
| 17 #include "base/message_loop.h" | 17 #include "base/message_loop.h" |
| 18 #include "base/path_service.h" | 18 #include "base/path_service.h" |
| 19 #include "base/prefs/pref_member.h" |
| 19 #include "base/prefs/pref_service.h" | 20 #include "base/prefs/pref_service.h" |
| 20 #include "base/prefs/public/pref_member.h" | |
| 21 #include "base/utf_string_conversions.h" | 21 #include "base/utf_string_conversions.h" |
| 22 #include "base/values.h" | 22 #include "base/values.h" |
| 23 #include "chrome/browser/content_settings/host_content_settings_map.h" | 23 #include "chrome/browser/content_settings/host_content_settings_map.h" |
| 24 #include "chrome/browser/plugins/plugin_finder.h" | 24 #include "chrome/browser/plugins/plugin_finder.h" |
| 25 #include "chrome/browser/plugins/plugin_metadata.h" | 25 #include "chrome/browser/plugins/plugin_metadata.h" |
| 26 #include "chrome/browser/plugins/plugin_prefs.h" | 26 #include "chrome/browser/plugins/plugin_prefs.h" |
| 27 #include "chrome/browser/prefs/scoped_user_pref_update.h" | 27 #include "chrome/browser/prefs/scoped_user_pref_update.h" |
| 28 #include "chrome/browser/profiles/profile.h" | 28 #include "chrome/browser/profiles/profile.h" |
| 29 #include "chrome/browser/ui/browser.h" | 29 #include "chrome/browser/ui/browser.h" |
| 30 #include "chrome/browser/ui/browser_window.h" | 30 #include "chrome/browser/ui/browser_window.h" |
| (...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 491 } | 491 } |
| 492 | 492 |
| 493 // static | 493 // static |
| 494 void PluginsUI::RegisterUserPrefs(PrefRegistrySyncable* registry) { | 494 void PluginsUI::RegisterUserPrefs(PrefRegistrySyncable* registry) { |
| 495 registry->RegisterBooleanPref(prefs::kPluginsShowDetails, | 495 registry->RegisterBooleanPref(prefs::kPluginsShowDetails, |
| 496 false, | 496 false, |
| 497 PrefRegistrySyncable::UNSYNCABLE_PREF); | 497 PrefRegistrySyncable::UNSYNCABLE_PREF); |
| 498 registry->RegisterDictionaryPref(prefs::kContentSettingsPluginWhitelist, | 498 registry->RegisterDictionaryPref(prefs::kContentSettingsPluginWhitelist, |
| 499 PrefRegistrySyncable::SYNCABLE_PREF); | 499 PrefRegistrySyncable::SYNCABLE_PREF); |
| 500 } | 500 } |
| OLD | NEW |