// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_POLICY_BROWSER_DM_TOKEN_STORAGE_LINUX_H_ #define CHROME_BROWSER_POLICY_BROWSER_DM_TOKEN_STORAGE_LINUX_H_ #include "components/enterprise/browser/controller/browser_dm_token_storage.h" #include <string> #include "base/gtest_prod_util.h" #include "base/memory/scoped_refptr.h" #include "base/sequence_checker.h" #include "base/task/single_thread_task_runner.h" namespace policy { // Implementation of BrowserDMTokenStorage delegate for Linux. class BrowserDMTokenStorageLinux : public BrowserDMTokenStorage::Delegate { … }; } // namespace policy #endif // CHROME_BROWSER_POLICY_BROWSER_DM_TOKEN_STORAGE_LINUX_H_