chromium/content/browser/file_system_access/mock_file_system_access_permission_grant.h

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CONTENT_BROWSER_FILE_SYSTEM_ACCESS_MOCK_FILE_SYSTEM_ACCESS_PERMISSION_GRANT_H_
#define CONTENT_BROWSER_FILE_SYSTEM_ACCESS_MOCK_FILE_SYSTEM_ACCESS_PERMISSION_GRANT_H_

#include "base/files/file_path.h"
#include "content/public/browser/file_system_access_permission_grant.h"
#include "testing/gmock/include/gmock/gmock.h"

namespace content {

// Mock FileSystemAccessPermissionGrant implementation.
class MockFileSystemAccessPermissionGrant
    : public FileSystemAccessPermissionGrant {};

}  // namespace content

#endif  // CONTENT_BROWSER_FILE_SYSTEM_ACCESS_MOCK_FILE_SYSTEM_ACCESS_PERMISSION_GRANT_H_