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

Side by Side Diff: content/child/indexed_db/indexed_db_key_builders.cc

Issue 1544273002: Switch to standard integer types in content/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months 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) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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/child/indexed_db/indexed_db_key_builders.h" 5 #include "content/child/indexed_db/indexed_db_key_builders.h"
6 6
7 #include <stddef.h>
8
7 #include <algorithm> 9 #include <algorithm>
8 #include <string> 10 #include <string>
9 #include <vector> 11 #include <vector>
10 12
11 #include "base/logging.h" 13 #include "base/logging.h"
12 #include "third_party/WebKit/public/platform/WebVector.h" 14 #include "third_party/WebKit/public/platform/WebVector.h"
13 15
14 using blink::WebIDBKey; 16 using blink::WebIDBKey;
15 using blink::WebIDBKeyRange; 17 using blink::WebIDBKeyRange;
16 using blink::WebIDBKeyTypeArray; 18 using blink::WebIDBKeyTypeArray;
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 return blink::WebIDBKeyPath::create(CopyArray(key_path.array())); 132 return blink::WebIDBKeyPath::create(CopyArray(key_path.array()));
131 case blink::WebIDBKeyPathTypeNull: 133 case blink::WebIDBKeyPathTypeNull:
132 return blink::WebIDBKeyPath::createNull(); 134 return blink::WebIDBKeyPath::createNull();
133 default: 135 default:
134 NOTREACHED(); 136 NOTREACHED();
135 return blink::WebIDBKeyPath::createNull(); 137 return blink::WebIDBKeyPath::createNull();
136 } 138 }
137 } 139 }
138 140
139 } // namespace content 141 } // namespace content
OLDNEW
« no previous file with comments | « content/child/indexed_db/indexed_db_key_builders.h ('k') | content/child/indexed_db/indexed_db_message_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698