#ifndef CHROME_RENDERER_EXTENSIONS_API_SYNC_FILE_SYSTEM_CUSTOM_BINDINGS_H_
#define CHROME_RENDERER_EXTENSIONS_API_SYNC_FILE_SYSTEM_CUSTOM_BINDINGS_H_
#include "extensions/renderer/object_backed_native_handler.h"
#include "v8/include/v8.h"
namespace extensions {
class SyncFileSystemCustomBindings : public ObjectBackedNativeHandler {
public:
explicit SyncFileSystemCustomBindings(ScriptContext* context);
SyncFileSystemCustomBindings(const SyncFileSystemCustomBindings&) = delete;
SyncFileSystemCustomBindings& operator=(const SyncFileSystemCustomBindings&) =
delete;
void AddRoutes() override;
private:
void GetSyncFileSystemObject(const v8::FunctionCallbackInfo<v8::Value>& args);
};
}
#endif