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

Unified Diff: chrome/common/indexed_db_param_traits.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 | « chrome/common/indexed_db_key.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/indexed_db_param_traits.cc
===================================================================
--- chrome/common/indexed_db_param_traits.cc (revision 69525)
+++ chrome/common/indexed_db_param_traits.cc (working copy)
@@ -78,6 +78,11 @@
case WebKit::WebIDBKey::InvalidType:
r->SetInvalid();
return true;
+ default:
+ // TODO(hans): Implement the WebIDBKey::DateType case once that is added
+ // WebKit side, and then remove this temporary default: clause.
+ r->SetInvalid();
+ return true;
}
NOTREACHED();
return false;
« no previous file with comments | « chrome/common/indexed_db_key.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698