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

Unified Diff: content/renderer/indexed_db/renderer_webidbdatabase_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_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_
« no previous file with comments | « content/renderer/indexed_db/renderer_webidbcursor_impl.cc ('k') | content/renderer/indexed_db/renderer_webidbdatabase_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698