| OLD | NEW |
| 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 #include "content/common/indexed_db/indexed_db_key.h" | 5 #include "content/common/indexed_db/indexed_db_key.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 namespace content { | 9 namespace content { |
| 10 | 10 |
| 11 using blink::WebIDBKey; | |
| 12 using blink::WebIDBKeyType; | 11 using blink::WebIDBKeyType; |
| 13 using blink::WebIDBKeyTypeArray; | 12 using blink::WebIDBKeyTypeArray; |
| 14 using blink::WebIDBKeyTypeBinary; | 13 using blink::WebIDBKeyTypeBinary; |
| 15 using blink::WebIDBKeyTypeDate; | 14 using blink::WebIDBKeyTypeDate; |
| 16 using blink::WebIDBKeyTypeInvalid; | 15 using blink::WebIDBKeyTypeInvalid; |
| 17 using blink::WebIDBKeyTypeMin; | 16 using blink::WebIDBKeyTypeMin; |
| 18 using blink::WebIDBKeyTypeNull; | 17 using blink::WebIDBKeyTypeNull; |
| 19 using blink::WebIDBKeyTypeNumber; | 18 using blink::WebIDBKeyTypeNumber; |
| 20 using blink::WebIDBKeyTypeString; | 19 using blink::WebIDBKeyTypeString; |
| 21 | 20 |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 case WebIDBKeyTypeInvalid: | 135 case WebIDBKeyTypeInvalid: |
| 137 case WebIDBKeyTypeNull: | 136 case WebIDBKeyTypeNull: |
| 138 case WebIDBKeyTypeMin: | 137 case WebIDBKeyTypeMin: |
| 139 default: | 138 default: |
| 140 NOTREACHED(); | 139 NOTREACHED(); |
| 141 return 0; | 140 return 0; |
| 142 } | 141 } |
| 143 } | 142 } |
| 144 | 143 |
| 145 } // namespace content | 144 } // namespace content |
| OLD | NEW |