| Index: content/common/indexed_db/proxy_webidbindex_impl.h
|
| diff --git a/content/common/indexed_db/proxy_webidbindex_impl.h b/content/common/indexed_db/proxy_webidbindex_impl.h
|
| deleted file mode 100644
|
| index 073d04a23b231a5380e0b886a04afce8eb5267ca..0000000000000000000000000000000000000000
|
| --- a/content/common/indexed_db/proxy_webidbindex_impl.h
|
| +++ /dev/null
|
| @@ -1,50 +0,0 @@
|
| -// Copyright (c) 2012 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_COMMON_INDEXED_DB_PROXY_WEBIDBINDEX_IMPL_H_
|
| -#define CONTENT_COMMON_INDEXED_DB_PROXY_WEBIDBINDEX_IMPL_H_
|
| -
|
| -#include "base/basictypes.h"
|
| -#include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBCallbacks.h"
|
| -#include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBIndex.h"
|
| -
|
| -namespace content {
|
| -
|
| -class RendererWebIDBIndexImpl : public WebKit::WebIDBIndex {
|
| - public:
|
| - explicit RendererWebIDBIndexImpl(int32 ipc_index_id);
|
| - virtual ~RendererWebIDBIndexImpl();
|
| -
|
| - // WebKit::WebIDBIndex
|
| - virtual void openObjectCursor(const WebKit::WebIDBKeyRange& range,
|
| - unsigned short direction,
|
| - WebKit::WebIDBCallbacks* callbacks,
|
| - const WebKit::WebIDBTransaction& transaction,
|
| - WebKit::WebExceptionCode& ec);
|
| - virtual void openKeyCursor(const WebKit::WebIDBKeyRange& range,
|
| - unsigned short direction,
|
| - WebKit::WebIDBCallbacks* callbacks,
|
| - const WebKit::WebIDBTransaction& transaction,
|
| - WebKit::WebExceptionCode& ec);
|
| - virtual void count(const WebKit::WebIDBKeyRange& range,
|
| - WebKit::WebIDBCallbacks* callbacks,
|
| - const WebKit::WebIDBTransaction& transaction,
|
| - WebKit::WebExceptionCode& ec);
|
| - virtual void getObject(const WebKit::WebIDBKeyRange& key_range,
|
| - WebKit::WebIDBCallbacks* callbacks,
|
| - const WebKit::WebIDBTransaction& transaction,
|
| - WebKit::WebExceptionCode& ec);
|
| - virtual void getKey(const WebKit::WebIDBKeyRange& key_range,
|
| - WebKit::WebIDBCallbacks* callbacks,
|
| - const WebKit::WebIDBTransaction& transaction,
|
| - WebKit::WebExceptionCode& ec);
|
| -
|
| - private:
|
| - int32 ipc_index_id_;
|
| -};
|
| -
|
| -} // namespace content
|
| -
|
| -#endif // CONTENT_COMMON_INDEXED_DB_PROXY_WEBIDBINDEX_IMPL_H_
|
| -
|
|
|