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

Side by Side Diff: content/common/indexed_db/proxy_webidbdatabase_impl.h

Issue 10916318: IndexedDB: Remove unused two-phase-open methods following WK90411 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_COMMON_INDEXED_DB_PROXY_WEBIDBDATABASE_IMPL_H_ 5 #ifndef CONTENT_COMMON_INDEXED_DB_PROXY_WEBIDBDATABASE_IMPL_H_
6 #define CONTENT_COMMON_INDEXED_DB_PROXY_WEBIDBDATABASE_IMPL_H_ 6 #define CONTENT_COMMON_INDEXED_DB_PROXY_WEBIDBDATABASE_IMPL_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBDatabase.h" 9 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBDatabase.h"
10 10
(...skipping 22 matching lines...) Expand all
33 const WebKit::WebIDBTransaction& transaction, 33 const WebKit::WebIDBTransaction& transaction,
34 WebKit::WebExceptionCode& ec); 34 WebKit::WebExceptionCode& ec);
35 virtual void setVersion( 35 virtual void setVersion(
36 const WebKit::WebString& version, WebKit::WebIDBCallbacks* callbacks, 36 const WebKit::WebString& version, WebKit::WebIDBCallbacks* callbacks,
37 WebKit::WebExceptionCode& ec); 37 WebKit::WebExceptionCode& ec);
38 virtual WebKit::WebIDBTransaction* transaction( 38 virtual WebKit::WebIDBTransaction* transaction(
39 const WebKit::WebDOMStringList& names, 39 const WebKit::WebDOMStringList& names,
40 unsigned short mode, 40 unsigned short mode,
41 WebKit::WebExceptionCode& ec); 41 WebKit::WebExceptionCode& ec);
42 virtual void close(); 42 virtual void close();
43 virtual void open(WebKit::WebIDBDatabaseCallbacks*);
44 43
45 private: 44 private:
46 int32 idb_database_id_; 45 int32 idb_database_id_;
47 }; 46 };
48 47
49 #endif // CONTENT_COMMON_INDEXED_DB_PROXY_WEBIDBDATABASE_IMPL_H_ 48 #endif // CONTENT_COMMON_INDEXED_DB_PROXY_WEBIDBDATABASE_IMPL_H_
OLDNEW
« no previous file with comments | « content/common/indexed_db/indexed_db_messages.h ('k') | content/common/indexed_db/proxy_webidbdatabase_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698