| 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 <vector> | 5 #include <vector> |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/message_loop.h" | 9 #include "base/message_loop.h" |
| 10 #include "base/string_util.h" | 10 #include "base/string_util.h" |
| 11 #include "chrome/browser/policy/cloud_policy_constants.h" | 11 #include "chrome/browser/policy/cloud/cloud_policy_constants.h" |
| 12 #include "chrome/browser/policy/cloud_policy_validator.h" | 12 #include "chrome/browser/policy/cloud/cloud_policy_validator.h" |
| 13 #include "chrome/browser/policy/policy_builder.h" | 13 #include "chrome/browser/policy/cloud/policy_builder.h" |
| 14 #include "content/public/test/test_browser_thread.h" | 14 #include "content/public/test/test_browser_thread.h" |
| 15 #include "crypto/rsa_private_key.h" | 15 #include "crypto/rsa_private_key.h" |
| 16 #include "testing/gmock/include/gmock/gmock.h" | 16 #include "testing/gmock/include/gmock/gmock.h" |
| 17 #include "testing/gtest/include/gtest/gtest.h" | 17 #include "testing/gtest/include/gtest/gtest.h" |
| 18 | 18 |
| 19 namespace em = enterprise_management; | 19 namespace em = enterprise_management; |
| 20 | 20 |
| 21 using testing::Invoke; | 21 using testing::Invoke; |
| 22 using testing::Mock; | 22 using testing::Mock; |
| 23 | 23 |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 | 282 |
| 283 TEST_F(CloudPolicyValidatorTest, NoRotation) { | 283 TEST_F(CloudPolicyValidatorTest, NoRotation) { |
| 284 allow_key_rotation_ = false; | 284 allow_key_rotation_ = false; |
| 285 policy_.set_new_signing_key(scoped_ptr<crypto::RSAPrivateKey>()); | 285 policy_.set_new_signing_key(scoped_ptr<crypto::RSAPrivateKey>()); |
| 286 Validate(CheckStatus(CloudPolicyValidatorBase::VALIDATION_OK)); | 286 Validate(CheckStatus(CloudPolicyValidatorBase::VALIDATION_OK)); |
| 287 } | 287 } |
| 288 | 288 |
| 289 } // namespace | 289 } // namespace |
| 290 | 290 |
| 291 } // namespace policy | 291 } // namespace policy |
| OLD | NEW |