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

Unified Diff: chrome/common/indexed_db_key.cc

Issue 5983001: Re-land 69416 - IndexedDB: Preparatory patch for using Date objects as keys.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years 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 | « no previous file | chrome/common/indexed_db_param_traits.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/indexed_db_key.cc
===================================================================
--- chrome/common/indexed_db_key.cc (revision 69525)
+++ chrome/common/indexed_db_key.cc (working copy)
@@ -56,6 +56,10 @@
return WebIDBKey(number_);
case WebIDBKey::InvalidType:
return WebIDBKey::createInvalid();
+ default:
+ // TODO(hans): Implement the WebIDBKey::DateType case once that is added
+ // WebKit side, and then remove this temporary default: clause.
+ return WebIDBKey::createInvalid();
}
NOTREACHED();
return WebIDBKey::createInvalid();
« no previous file with comments | « no previous file | chrome/common/indexed_db_param_traits.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698