| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/media/protected_media_identifier_permission_context_fac
tory.h" | 5 #include "chrome/browser/media/protected_media_identifier_permission_context_fac
tory.h" |
| 6 | 6 |
| 7 #include "chrome/browser/media/protected_media_identifier_permission_context.h" | 7 #include "chrome/browser/media/protected_media_identifier_permission_context.h" |
| 8 #include "chrome/browser/profiles/incognito_helpers.h" | 8 #include "chrome/browser/profiles/incognito_helpers.h" |
| 9 #include "chrome/browser/profiles/profile.h" | 9 #include "chrome/browser/profiles/profile.h" |
| 10 #include "chrome/common/pref_names.h" | 10 #include "chrome/common/pref_names.h" |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 ProtectedMediaIdentifierPermissionContextFactory::BuildServiceInstanceFor( | 41 ProtectedMediaIdentifierPermissionContextFactory::BuildServiceInstanceFor( |
| 42 content::BrowserContext* profile) const { | 42 content::BrowserContext* profile) const { |
| 43 return new ProtectedMediaIdentifierPermissionContext( | 43 return new ProtectedMediaIdentifierPermissionContext( |
| 44 static_cast<Profile*>(profile)); | 44 static_cast<Profile*>(profile)); |
| 45 } | 45 } |
| 46 | 46 |
| 47 void | 47 void |
| 48 ProtectedMediaIdentifierPermissionContextFactory::RegisterProfilePrefs( | 48 ProtectedMediaIdentifierPermissionContextFactory::RegisterProfilePrefs( |
| 49 user_prefs::PrefRegistrySyncable* registry) { | 49 user_prefs::PrefRegistrySyncable* registry) { |
| 50 #if defined(OS_ANDROID) | 50 #if defined(OS_ANDROID) |
| 51 registry->RegisterBooleanPref( | 51 registry->RegisterBooleanPref(prefs::kProtectedMediaIdentifierEnabled, true); |
| 52 prefs::kProtectedMediaIdentifierEnabled, | |
| 53 true, | |
| 54 user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF); | |
| 55 #endif | 52 #endif |
| 56 } | 53 } |
| 57 | 54 |
| 58 content::BrowserContext* | 55 content::BrowserContext* |
| 59 ProtectedMediaIdentifierPermissionContextFactory::GetBrowserContextToUse( | 56 ProtectedMediaIdentifierPermissionContextFactory::GetBrowserContextToUse( |
| 60 content::BrowserContext* context) const { | 57 content::BrowserContext* context) const { |
| 61 return chrome::GetBrowserContextOwnInstanceInIncognito(context); | 58 return chrome::GetBrowserContextOwnInstanceInIncognito(context); |
| 62 } | 59 } |
| OLD | NEW |