Home | History | Annotate | Download | only in cloud
      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
      3 // found in the LICENSE file.
      4 
      5 #include "components/policy/core/common/cloud/mock_user_cloud_policy_store.h"
      6 
      7 namespace policy {
      8 
      9 MockUserCloudPolicyStore::MockUserCloudPolicyStore()
     10     : UserCloudPolicyStore(base::FilePath(),
     11                            base::FilePath(),
     12                            std::string(),
     13                            scoped_refptr<base::SequencedTaskRunner>()) {}
     14 
     15 MockUserCloudPolicyStore::~MockUserCloudPolicyStore() {}
     16 
     17 }  // namespace policy
     18