| 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 "components/policy/core/common/cloud/mock_user_cloud_policy_store.h" | 5 #include "components/policy/core/common/cloud/mock_user_cloud_policy_store.h" |
| 6 #include "base/sequenced_task_runner.h" |
| 6 | 7 |
| 7 namespace policy { | 8 namespace policy { |
| 8 | 9 |
| 9 MockUserCloudPolicyStore::MockUserCloudPolicyStore() | 10 MockUserCloudPolicyStore::MockUserCloudPolicyStore() |
| 10 : UserCloudPolicyStore(base::FilePath(), | 11 : UserCloudPolicyStore(base::FilePath(), |
| 11 base::FilePath(), | 12 base::FilePath(), |
| 12 scoped_refptr<base::SequencedTaskRunner>()) {} | 13 scoped_refptr<base::SequencedTaskRunner>()) {} |
| 13 | 14 |
| 14 MockUserCloudPolicyStore::~MockUserCloudPolicyStore() {} | 15 MockUserCloudPolicyStore::~MockUserCloudPolicyStore() {} |
| 15 | 16 |
| 16 } // namespace policy | 17 } // namespace policy |
| OLD | NEW |