// Copyright (c) 2010 The Chromium 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 CHROME_RENDERER_RENDERER_WEBIDBDATABASE_IMPL_H_ #define CHROME_RENDERER_RENDERER_WEBIDBDATABASE_IMPL_H_ #include "base/basictypes.h" #include "third_party/WebKit/WebKit/chromium/public/WebIDBCallbacks.h" #include "third_party/WebKit/WebKit/chromium/public/WebIDBDatabase.h" class RendererWebIDBDatabaseImpl : public WebKit::WebIDBDatabase { public: explicit RendererWebIDBDatabaseImpl(int32 idb_database_id); virtual ~RendererWebIDBDatabaseImpl(); private: int32 idb_database_id_; }; #endif // CHROME_RENDERER_RENDERER_WEBIDBDATABASE_IMPL_H_