Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1026)

Unified Diff: content/renderer/indexed_db/renderer_webidbindex_impl.h

Issue 9368053: Move indexed db files from content/renderer to content/common. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove unneccesary include Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/renderer/indexed_db/renderer_webidbindex_impl.h
diff --git a/content/renderer/indexed_db/renderer_webidbindex_impl.h b/content/renderer/indexed_db/renderer_webidbindex_impl.h
deleted file mode 100644
index 29e2c8f9b5fe83627a9bcf297b425e67579ff1e2..0000000000000000000000000000000000000000
--- a/content/renderer/indexed_db/renderer_webidbindex_impl.h
+++ /dev/null
@@ -1,52 +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_RENDERER_INDEXED_DB_RENDERER_WEBIDBINDEX_IMPL_H_
-#define CONTENT_RENDERER_INDEXED_DB_RENDERER_WEBIDBINDEX_IMPL_H_
-#pragma once
-
-#include "base/basictypes.h"
-#include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBCallbacks.h"
-#include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBIndex.h"
-
-class RendererWebIDBIndexImpl : public WebKit::WebIDBIndex {
- public:
- explicit RendererWebIDBIndexImpl(int32 idb_index_id);
- virtual ~RendererWebIDBIndexImpl();
-
- // WebKit::WebIDBIndex
- virtual WebKit::WebString name() const;
- virtual WebKit::WebString storeName() const;
- virtual WebKit::WebString keyPath() const;
- virtual bool unique() const;
- virtual bool multiEntry() const;
-
- 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::WebIDBKey& key,
- WebKit::WebIDBCallbacks* callbacks,
- const WebKit::WebIDBTransaction& transaction,
- WebKit::WebExceptionCode& ec);
- virtual void getKey(const WebKit::WebIDBKey& key,
- WebKit::WebIDBCallbacks* callbacks,
- const WebKit::WebIDBTransaction& transaction,
- WebKit::WebExceptionCode& ec);
-
- private:
- int32 idb_index_id_;
-};
-
-#endif // CONTENT_RENDERER_INDEXED_DB_RENDERER_WEBIDBINDEX_IMPL_H_
« no previous file with comments | « content/renderer/indexed_db/renderer_webidbfactory_impl.cc ('k') | content/renderer/indexed_db/renderer_webidbindex_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698