| 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/chromeos/policy/enterprise_install_attributes.h" | 5 #include "chrome/browser/chromeos/policy/enterprise_install_attributes.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/bind_helpers.h" | 8 #include "base/bind_helpers.h" |
| 9 #include "base/file_util.h" | 9 #include "base/files/file_util.h" |
| 10 #include "base/files/scoped_temp_dir.h" | 10 #include "base/files/scoped_temp_dir.h" |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/path_service.h" | 12 #include "base/path_service.h" |
| 13 #include "base/run_loop.h" | 13 #include "base/run_loop.h" |
| 14 #include "chrome/browser/chromeos/policy/proto/install_attributes.pb.h" | 14 #include "chrome/browser/chromeos/policy/proto/install_attributes.pb.h" |
| 15 #include "chromeos/chromeos_paths.h" | 15 #include "chromeos/chromeos_paths.h" |
| 16 #include "chromeos/cryptohome/cryptohome_util.h" | 16 #include "chromeos/cryptohome/cryptohome_util.h" |
| 17 #include "chromeos/dbus/cryptohome_client.h" | 17 #include "chromeos/dbus/cryptohome_client.h" |
| 18 #include "chromeos/dbus/dbus_thread_manager.h" | 18 #include "chromeos/dbus/dbus_thread_manager.h" |
| 19 #include "google_apis/gaia/gaia_auth_util.h" | 19 #include "google_apis/gaia/gaia_auth_util.h" |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 EnterpriseInstallAttributes::kAttrEnterpriseUser, kTestUser)); | 278 EnterpriseInstallAttributes::kAttrEnterpriseUser, kTestUser)); |
| 279 ASSERT_TRUE(cryptohome_util::InstallAttributesFinalize()); | 279 ASSERT_TRUE(cryptohome_util::InstallAttributesFinalize()); |
| 280 | 280 |
| 281 // Verify that EnterpriseInstallAttributes correctly decodes the stub | 281 // Verify that EnterpriseInstallAttributes correctly decodes the stub |
| 282 // cache file. | 282 // cache file. |
| 283 install_attributes_->ReadCacheFile(GetTempPath()); | 283 install_attributes_->ReadCacheFile(GetTempPath()); |
| 284 EXPECT_EQ(kTestUser, install_attributes_->GetRegistrationUser()); | 284 EXPECT_EQ(kTestUser, install_attributes_->GetRegistrationUser()); |
| 285 } | 285 } |
| 286 | 286 |
| 287 } // namespace policy | 287 } // namespace policy |
| OLD | NEW |