| 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/pepper_flash_settings_manager.h" | 5 #include "chrome/browser/pepper_flash_settings_manager.h" |
| 6 | 6 |
| 7 #include <map> | 7 #include <map> |
| 8 #include <utility> | 8 #include <utility> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 952 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 963 *plugin_info = *iter; | 963 *plugin_info = *iter; |
| 964 return true; | 964 return true; |
| 965 } | 965 } |
| 966 } | 966 } |
| 967 return false; | 967 return false; |
| 968 } | 968 } |
| 969 | 969 |
| 970 // static | 970 // static |
| 971 void PepperFlashSettingsManager::RegisterProfilePrefs( | 971 void PepperFlashSettingsManager::RegisterProfilePrefs( |
| 972 user_prefs::PrefRegistrySyncable* registry) { | 972 user_prefs::PrefRegistrySyncable* registry) { |
| 973 registry->RegisterBooleanPref(prefs::kDeauthorizeContentLicenses, false); | |
| 974 | |
| 975 registry->RegisterBooleanPref(prefs::kPepperFlashSettingsEnabled, true); | 973 registry->RegisterBooleanPref(prefs::kPepperFlashSettingsEnabled, true); |
| 976 } | 974 } |
| 977 | 975 |
| 978 uint32_t PepperFlashSettingsManager::DeauthorizeContentLicenses( | 976 uint32_t PepperFlashSettingsManager::DeauthorizeContentLicenses( |
| 979 PrefService* prefs) { | 977 PrefService* prefs) { |
| 980 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 978 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
| 981 | 979 |
| 982 // Clear the device ID salt which has the effect of regenerating a device | 980 // Clear the device ID salt which has the effect of regenerating a device |
| 983 // ID. Since this happens synchronously (and on the UI thread), we don't have | 981 // ID. Since this happens synchronously (and on the UI thread), we don't have |
| 984 // to add it to a pending request. | 982 // to add it to a pending request. |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1056 } | 1054 } |
| 1057 | 1055 |
| 1058 void PepperFlashSettingsManager::OnError(Core* core) { | 1056 void PepperFlashSettingsManager::OnError(Core* core) { |
| 1059 DCHECK(core); | 1057 DCHECK(core); |
| 1060 if (core != core_.get()) | 1058 if (core != core_.get()) |
| 1061 return; | 1059 return; |
| 1062 | 1060 |
| 1063 core_->Detach(); | 1061 core_->Detach(); |
| 1064 core_ = NULL; | 1062 core_ = NULL; |
| 1065 } | 1063 } |
| OLD | NEW |