blob: d981e08c9522b8499435b9604452b01ee63292c6 [file] [log] [blame]
// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef LOGIN_MANAGER_FILE_CHECKER_H_
#define LOGIN_MANAGER_FILE_CHECKER_H_
#include <base/files/file_path.h>
namespace login_manager {
class FileChecker {
public:
explicit FileChecker(const base::FilePath& filename);
virtual ~FileChecker();
virtual bool exists();
private:
const base::FilePath filename_;
DISALLOW_COPY_AND_ASSIGN(FileChecker);
};
} // namespace login_manager
#endif // LOGIN_MANAGER_FILE_CHECKER_H_