Index: content/renderer/indexed_db/renderer_webidbdatabase_impl.h |
diff --git a/content/renderer/indexed_db/renderer_webidbdatabase_impl.h b/content/renderer/indexed_db/renderer_webidbdatabase_impl.h |
deleted file mode 100644 |
index 1f9b08038c47994b358fbd1f91fb78520619cc2f..0000000000000000000000000000000000000000 |
--- a/content/renderer/indexed_db/renderer_webidbdatabase_impl.h |
+++ /dev/null |
@@ -1,52 +0,0 @@ |
-// Copyright (c) 2011 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 CONTENT_RENDERER_INDEXED_DB_RENDERER_WEBIDBDATABASE_IMPL_H_ |
-#define CONTENT_RENDERER_INDEXED_DB_RENDERER_WEBIDBDATABASE_IMPL_H_ |
-#pragma once |
- |
-#include "base/basictypes.h" |
-#include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBDatabase.h" |
- |
-namespace WebKit { |
-class WebIDBCallbacks; |
-class WebIDBDatabaseCallbacks; |
-class WebString; |
-class WebIDBTransaction; |
-} |
- |
-class RendererWebIDBDatabaseImpl : public WebKit::WebIDBDatabase { |
- public: |
- explicit RendererWebIDBDatabaseImpl(int32 idb_database_id); |
- virtual ~RendererWebIDBDatabaseImpl(); |
- |
- // WebKit::WebIDBDatabase |
- virtual WebKit::WebString name() const; |
- virtual WebKit::WebString version() const; |
- virtual WebKit::WebDOMStringList objectStoreNames() const; |
- virtual WebKit::WebIDBObjectStore* createObjectStore( |
- const WebKit::WebString& name, |
- const WebKit::WebString& key_path, |
- bool auto_increment, |
- const WebKit::WebIDBTransaction& transaction, |
- WebKit::WebExceptionCode& ec); |
- virtual void deleteObjectStore( |
- const WebKit::WebString& name, |
- const WebKit::WebIDBTransaction& transaction, |
- WebKit::WebExceptionCode& ec); |
- virtual void setVersion( |
- const WebKit::WebString& version, WebKit::WebIDBCallbacks* callbacks, |
- WebKit::WebExceptionCode& ec); |
- virtual WebKit::WebIDBTransaction* transaction( |
- const WebKit::WebDOMStringList& names, |
- unsigned short mode, |
- WebKit::WebExceptionCode& ec); |
- virtual void close(); |
- virtual void open(WebKit::WebIDBDatabaseCallbacks*); |
- |
- private: |
- int32 idb_database_id_; |
-}; |
- |
-#endif // CONTENT_RENDERER_INDEXED_DB_RENDERER_WEBIDBDATABASE_IMPL_H_ |