| 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/user_cloud_policy_store_chromeos.h" | 5 #include "chrome/browser/chromeos/policy/user_cloud_policy_store_chromeos.h" | 
| 6 | 6 | 
| 7 #include <vector> | 7 #include <vector> | 
| 8 | 8 | 
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" | 
| 10 #include "base/bind.h" | 10 #include "base/bind.h" | 
| 11 #include "base/file_util.h" | 11 #include "base/file_util.h" | 
| 12 #include "base/files/scoped_temp_dir.h" | 12 #include "base/files/scoped_temp_dir.h" | 
| 13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" | 
| 14 #include "base/message_loop/message_loop.h" | 14 #include "base/message_loop/message_loop.h" | 
| 15 #include "base/threading/sequenced_worker_pool.h" | 15 #include "base/threading/sequenced_worker_pool.h" | 
| 16 #include "chrome/browser/policy/cloud/cloud_policy_constants.h" |  | 
| 17 #include "chrome/browser/policy/cloud/mock_cloud_policy_store.h" |  | 
| 18 #include "chrome/browser/policy/cloud/policy_builder.h" |  | 
| 19 #include "chrome/browser/policy/proto/cloud/device_management_local.pb.h" | 16 #include "chrome/browser/policy/proto/cloud/device_management_local.pb.h" | 
| 20 #include "chromeos/dbus/mock_cryptohome_client.h" | 17 #include "chromeos/dbus/mock_cryptohome_client.h" | 
| 21 #include "chromeos/dbus/mock_session_manager_client.h" | 18 #include "chromeos/dbus/mock_session_manager_client.h" | 
|  | 19 #include "components/policy/core/common/cloud/cloud_policy_constants.h" | 
|  | 20 #include "components/policy/core/common/cloud/mock_cloud_policy_store.h" | 
|  | 21 #include "components/policy/core/common/cloud/policy_builder.h" | 
| 22 #include "policy/policy_constants.h" | 22 #include "policy/policy_constants.h" | 
| 23 #include "policy/proto/cloud_policy.pb.h" | 23 #include "policy/proto/cloud_policy.pb.h" | 
| 24 #include "testing/gmock/include/gmock/gmock.h" | 24 #include "testing/gmock/include/gmock/gmock.h" | 
| 25 #include "testing/gtest/include/gtest/gtest.h" | 25 #include "testing/gtest/include/gtest/gtest.h" | 
| 26 | 26 | 
| 27 namespace em = enterprise_management; | 27 namespace em = enterprise_management; | 
| 28 | 28 | 
| 29 using testing::AllOf; | 29 using testing::AllOf; | 
| 30 using testing::AnyNumber; | 30 using testing::AnyNumber; | 
| 31 using testing::Eq; | 31 using testing::Eq; | 
| (...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 609   Mock::VerifyAndClearExpectations(&cryptohome_client_); | 609   Mock::VerifyAndClearExpectations(&cryptohome_client_); | 
| 610 | 610 | 
| 611   EXPECT_FALSE(store_->policy()); | 611   EXPECT_FALSE(store_->policy()); | 
| 612   EXPECT_TRUE(store_->policy_map().empty()); | 612   EXPECT_TRUE(store_->policy_map().empty()); | 
| 613   EXPECT_EQ(CloudPolicyStore::STATUS_VALIDATION_ERROR, store_->status()); | 613   EXPECT_EQ(CloudPolicyStore::STATUS_VALIDATION_ERROR, store_->status()); | 
| 614 } | 614 } | 
| 615 | 615 | 
| 616 }  // namespace | 616 }  // namespace | 
| 617 | 617 | 
| 618 }  // namespace policy | 618 }  // namespace policy | 
| OLD | NEW | 
|---|