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/options/browser_options_handler.h" | 5 #include "chrome/browser/ui/webui/options/browser_options_handler.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 | 8 |
9 #include <set> | 9 #include <set> |
10 #include <utility> | 10 #include <utility> |
(...skipping 796 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
807 | 807 |
808 chromeos::CrosSettings* cros_settings = chromeos::CrosSettings::Get(); | 808 chromeos::CrosSettings* cros_settings = chromeos::CrosSettings::Get(); |
809 bool allow_bluetooth = true; | 809 bool allow_bluetooth = true; |
810 cros_settings->GetBoolean(chromeos::kAllowBluetooth, &allow_bluetooth); | 810 cros_settings->GetBoolean(chromeos::kAllowBluetooth, &allow_bluetooth); |
811 values->SetBoolean("allowBluetooth", allow_bluetooth); | 811 values->SetBoolean("allowBluetooth", allow_bluetooth); |
812 | 812 |
813 values->SetBoolean("showQuickUnlockSettings", | 813 values->SetBoolean("showQuickUnlockSettings", |
814 chromeos::quick_unlock::IsPinEnabled(profile->GetPrefs())); | 814 chromeos::quick_unlock::IsPinEnabled(profile->GetPrefs())); |
815 values->SetBoolean("fingerprintUnlockEnabled", | 815 values->SetBoolean("fingerprintUnlockEnabled", |
816 chromeos::quick_unlock::IsFingerprintEnabled()); | 816 chromeos::quick_unlock::IsFingerprintEnabled()); |
817 values->SetBoolean("pinUnlockEnabled", | |
818 chromeos::quick_unlock::IsPinEnabled(profile->GetPrefs())); | |
819 if (chromeos::quick_unlock::IsPinEnabled(profile->GetPrefs())) { | 817 if (chromeos::quick_unlock::IsPinEnabled(profile->GetPrefs())) { |
820 values->SetString( | 818 values->SetString( |
821 "enableScreenlock", | 819 "enableScreenlock", |
822 l10n_util::GetStringUTF16( | 820 l10n_util::GetStringUTF16( |
823 IDS_OPTIONS_ENABLE_SCREENLOCKER_CHECKBOX_WITH_QUICK_UNLOCK)); | 821 IDS_OPTIONS_ENABLE_SCREENLOCKER_CHECKBOX_WITH_QUICK_UNLOCK)); |
824 } else { | 822 } else { |
825 values->SetString( | 823 values->SetString( |
826 "enableScreenlock", | 824 "enableScreenlock", |
827 l10n_util::GetStringUTF16(IDS_OPTIONS_ENABLE_SCREENLOCKER_CHECKBOX)); | 825 l10n_util::GetStringUTF16(IDS_OPTIONS_ENABLE_SCREENLOCKER_CHECKBOX)); |
828 } | 826 } |
(...skipping 1534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2363 | 2361 |
2364 bool BrowserOptionsHandler::IsDeviceOwnerProfile() { | 2362 bool BrowserOptionsHandler::IsDeviceOwnerProfile() { |
2365 #if defined(OS_CHROMEOS) | 2363 #if defined(OS_CHROMEOS) |
2366 return chromeos::ProfileHelper::IsOwnerProfile(Profile::FromWebUI(web_ui())); | 2364 return chromeos::ProfileHelper::IsOwnerProfile(Profile::FromWebUI(web_ui())); |
2367 #else | 2365 #else |
2368 return true; | 2366 return true; |
2369 #endif | 2367 #endif |
2370 } | 2368 } |
2371 | 2369 |
2372 } // namespace options | 2370 } // namespace options |
OLD | NEW |