chromium/third_party/leveldatabase/src/helpers/memenv/memenv.cc

// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. See the AUTHORS file for names of contributors.

#include "helpers/memenv/memenv.h"

#include <cstring>
#include <limits>
#include <map>
#include <string>
#include <vector>

#include "leveldb/env.h"
#include "leveldb/status.h"
#include "port/port.h"
#include "port/thread_annotations.h"
#include "util/mutexlock.h"

namespace leveldb {

namespace {

class FileState {};

class SequentialFileImpl : public SequentialFile {};

class RandomAccessFileImpl : public RandomAccessFile {};

class WritableFileImpl : public WritableFile {};

class NoOpLogger : public Logger {};

class InMemoryEnv : public EnvWrapper {};

}  // namespace

Env* NewMemEnv(Env* base_env) {}

}  // namespace leveldb