summaryrefslogtreecommitdiffstats
path: root/content
diff options
context:
space:
mode:
Diffstat (limited to 'content')
-rw-r--r--content/common/indexed_db_key.cc1
-rw-r--r--content/common/indexed_db_param_traits.cc1
2 files changed, 0 insertions, 2 deletions
diff --git a/content/common/indexed_db_key.cc b/content/common/indexed_db_key.cc
index c4e0b20..d19b296 100644
--- a/content/common/indexed_db_key.cc
+++ b/content/common/indexed_db_key.cc
@@ -58,7 +58,6 @@ IndexedDBKey::operator WebIDBKey() const {
case WebIDBKey::NumberType:
return WebIDBKey::createNumber(number_);
case WebIDBKey::InvalidType:
- default: // TODO(jsbell): Remove this case label once NullType is gone
return WebIDBKey::createInvalid();
}
NOTREACHED();
diff --git a/content/common/indexed_db_param_traits.cc b/content/common/indexed_db_param_traits.cc
index 326efbc7..d1f94da 100644
--- a/content/common/indexed_db_param_traits.cc
+++ b/content/common/indexed_db_param_traits.cc
@@ -80,7 +80,6 @@ bool ParamTraits<IndexedDBKey>::Read(const Message* m,
r->SetNumber(number);
return true;
case WebKit::WebIDBKey::InvalidType:
- default: // TODO(jsbell): Remove this case label once NullType is gone
r->SetInvalid();
return true;
}