| 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 "base/command_line.h" | 5 #include "base/command_line.h" |
| 6 #include "base/memory/ref_counted.h" | 6 #include "base/memory/ref_counted.h" |
| 7 #include "chrome/browser/chromeos/login/user_manager.h" | 7 #include "chrome/browser/chromeos/login/users/user_manager.h" |
| 8 #include "chrome/browser/chromeos/policy/device_policy_cros_browser_test.h" | 8 #include "chrome/browser/chromeos/policy/device_policy_cros_browser_test.h" |
| 9 #include "chrome/browser/chromeos/policy/proto/chrome_device_policy.pb.h" | 9 #include "chrome/browser/chromeos/policy/proto/chrome_device_policy.pb.h" |
| 10 #include "chrome/browser/chromeos/settings/cros_settings.h" | 10 #include "chrome/browser/chromeos/settings/cros_settings.h" |
| 11 #include "chromeos/chromeos_switches.h" | 11 #include "chromeos/chromeos_switches.h" |
| 12 #include "chromeos/settings/cros_settings_names.h" | 12 #include "chromeos/settings/cros_settings_names.h" |
| 13 #include "content/public/test/test_utils.h" | 13 #include "content/public/test/test_utils.h" |
| 14 #include "testing/gmock/include/gmock/gmock.h" | 14 #include "testing/gmock/include/gmock/gmock.h" |
| 15 #include "testing/gtest/include/gtest/gtest.h" | 15 #include "testing/gtest/include/gtest/gtest.h" |
| 16 | 16 |
| 17 namespace em = enterprise_management; | 17 namespace em = enterprise_management; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 43 em::ChromeDeviceSettingsProto& proto(device_policy()->payload()); | 43 em::ChromeDeviceSettingsProto& proto(device_policy()->payload()); |
| 44 proto.mutable_supervised_users_settings()->set_supervised_users_enabled(true); | 44 proto.mutable_supervised_users_settings()->set_supervised_users_enabled(true); |
| 45 RefreshDevicePolicy(); | 45 RefreshDevicePolicy(); |
| 46 | 46 |
| 47 runner->Run(); | 47 runner->Run(); |
| 48 | 48 |
| 49 EXPECT_TRUE(chromeos::UserManager::Get()->AreLocallyManagedUsersAllowed()); | 49 EXPECT_TRUE(chromeos::UserManager::Get()->AreLocallyManagedUsersAllowed()); |
| 50 } | 50 } |
| 51 | 51 |
| 52 } // namespace chromeos | 52 } // namespace chromeos |
| OLD | NEW |