| 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 #ifndef CHROME_BROWSER_POLICY_ENTERPRISE_INSTALL_ATTRIBUTES_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_POLICY_ENTERPRISE_INSTALL_ATTRIBUTES_H_ |
| 6 #define CHROME_BROWSER_POLICY_ENTERPRISE_INSTALL_ATTRIBUTES_H_ | 6 #define CHROME_BROWSER_CHROMEOS_POLICY_ENTERPRISE_INSTALL_ATTRIBUTES_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "base/file_path.h" | 13 #include "base/file_path.h" |
| 14 #include "chrome/browser/policy/cloud_policy_constants.h" | 14 #include "chrome/browser/policy/cloud/cloud_policy_constants.h" |
| 15 | 15 |
| 16 namespace chromeos { | 16 namespace chromeos { |
| 17 class CryptohomeLibrary; | 17 class CryptohomeLibrary; |
| 18 } | 18 } |
| 19 | 19 |
| 20 namespace policy { | 20 namespace policy { |
| 21 | 21 |
| 22 // Brokers access to the enterprise-related installation-time attributes on | 22 // Brokers access to the enterprise-related installation-time attributes on |
| 23 // ChromeOS. | 23 // ChromeOS. |
| 24 class EnterpriseInstallAttributes { | 24 class EnterpriseInstallAttributes { |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 std::string registration_user_; | 83 std::string registration_user_; |
| 84 std::string registration_domain_; | 84 std::string registration_domain_; |
| 85 std::string registration_device_id_; | 85 std::string registration_device_id_; |
| 86 DeviceMode registration_mode_; | 86 DeviceMode registration_mode_; |
| 87 | 87 |
| 88 DISALLOW_COPY_AND_ASSIGN(EnterpriseInstallAttributes); | 88 DISALLOW_COPY_AND_ASSIGN(EnterpriseInstallAttributes); |
| 89 }; | 89 }; |
| 90 | 90 |
| 91 } // namespace policy | 91 } // namespace policy |
| 92 | 92 |
| 93 #endif // CHROME_BROWSER_POLICY_ENTERPRISE_INSTALL_ATTRIBUTES_H_ | 93 #endif // CHROME_BROWSER_CHROMEOS_POLICY_ENTERPRISE_INSTALL_ATTRIBUTES_H_ |
| OLD | NEW |