Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / content / browser / indexed_db / indexed_db_connection.h
index e4ed928..63bef2b 100644 (file)
@@ -24,6 +24,8 @@ class CONTENT_EXPORT IndexedDBConnection {
   virtual void Close();
   virtual bool IsConnected();
 
+  void VersionChangeIgnored();
+
   IndexedDBDatabase* database() { return database_; }
   IndexedDBDatabaseCallbacks* callbacks() { return callbacks_; }
 
@@ -34,6 +36,8 @@ class CONTENT_EXPORT IndexedDBConnection {
   // The callbacks_ member is cleared when the connection is closed.
   // May be NULL in unit tests.
   scoped_refptr<IndexedDBDatabaseCallbacks> callbacks_;
+
+  DISALLOW_COPY_AND_ASSIGN(IndexedDBConnection);
 };
 
 }  // namespace content