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 29 matching lines...) Expand all Loading... |
40 KeyedService* | 40 KeyedService* |
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 registry->RegisterBooleanPref( | 51 registry->RegisterBooleanPref( |
51 prefs::kProtectedMediaIdentifierEnabled, | 52 prefs::kProtectedMediaIdentifierEnabled, |
52 true, | 53 true, |
53 user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF); | 54 user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF); |
| 55 #endif |
54 } | 56 } |
55 | 57 |
56 content::BrowserContext* | 58 content::BrowserContext* |
57 ProtectedMediaIdentifierPermissionContextFactory::GetBrowserContextToUse( | 59 ProtectedMediaIdentifierPermissionContextFactory::GetBrowserContextToUse( |
58 content::BrowserContext* context) const { | 60 content::BrowserContext* context) const { |
59 return chrome::GetBrowserContextOwnInstanceInIncognito(context); | 61 return chrome::GetBrowserContextOwnInstanceInIncognito(context); |
60 } | 62 } |
OLD | NEW |