#ifndef SQL_INTERNAL_API_TOKEN_H_
#define SQL_INTERNAL_API_TOKEN_H_
namespace base {
class FilePath;
}
namespace sql {
namespace test {
struct ColumnInfo;
bool CorruptSizeInHeader(const base::FilePath&);
}
class InternalApiToken {
private:
InternalApiToken() {}
InternalApiToken(const InternalApiToken&) = default;
friend class Database;
friend class DatabaseTestPeer;
friend class Recovery;
friend class Transaction;
friend struct test::ColumnInfo;
friend bool test::CorruptSizeInHeader(const base::FilePath&);
};
}
#endif