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

Unified Diff: content/common/indexed_db/indexed_db_key.h

Issue 19752007: Use builders to convert between WebKit and content IDB types (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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
« no previous file with comments | « content/common/DEPS ('k') | content/common/indexed_db/indexed_db_key.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/indexed_db/indexed_db_key.h
diff --git a/content/common/indexed_db/indexed_db_key.h b/content/common/indexed_db/indexed_db_key.h
index 9b46ed7d6f9cb93d34c74e252037f06fd3b541b9..f453b3ab865818d86c645629b332d286b74b0824 100644
--- a/content/common/indexed_db/indexed_db_key.h
+++ b/content/common/indexed_db/indexed_db_key.h
@@ -29,7 +29,6 @@ class CONTENT_EXPORT IndexedDBKey {
explicit IndexedDBKey(const string16& str);
IndexedDBKey(double number,
WebKit::WebIDBKeyType type); // must be date or number
- explicit IndexedDBKey(const WebKit::WebIDBKey& key);
~IndexedDBKey();
bool IsValid() const;
@@ -44,7 +43,6 @@ class CONTENT_EXPORT IndexedDBKey {
double date() const { return date_; }
double number() const { return number_; }
- operator WebKit::WebIDBKey() const;
size_t size_estimate() const { return size_estimate_; }
private:
« no previous file with comments | « content/common/DEPS ('k') | content/common/indexed_db/indexed_db_key.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698