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

Side by Side Diff: content/common/indexed_db/indexed_db_key.cc

Issue 2537513006: content: Cleanup class/struct forward declarations (Closed)
Patch Set: Created 4 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 unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « content/common/indexed_db/indexed_db_key.h ('k') | content/common/service_manager/child_connection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698