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

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

Issue 311263014: IndexedDB: Fix trivial cpplint.py errors (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 6 years, 6 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 | Annotate | Revision Log
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 <algorithm>
8 #include <string>
9 #include <vector>
10
7 #include "base/logging.h" 11 #include "base/logging.h"
8 #include "third_party/WebKit/public/platform/WebVector.h" 12 #include "third_party/WebKit/public/platform/WebVector.h"
9 13
10 using blink::WebIDBKey; 14 using blink::WebIDBKey;
11 using blink::WebIDBKeyRange; 15 using blink::WebIDBKeyRange;
12 using blink::WebIDBKeyTypeArray; 16 using blink::WebIDBKeyTypeArray;
13 using blink::WebIDBKeyTypeBinary; 17 using blink::WebIDBKeyTypeBinary;
14 using blink::WebIDBKeyTypeDate; 18 using blink::WebIDBKeyTypeDate;
15 using blink::WebIDBKeyTypeInvalid; 19 using blink::WebIDBKeyTypeInvalid;
16 using blink::WebIDBKeyTypeMin; 20 using blink::WebIDBKeyTypeMin;
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 return blink::WebIDBKeyPath::create(CopyArray(key_path.array())); 130 return blink::WebIDBKeyPath::create(CopyArray(key_path.array()));
127 case blink::WebIDBKeyPathTypeNull: 131 case blink::WebIDBKeyPathTypeNull:
128 return blink::WebIDBKeyPath::createNull(); 132 return blink::WebIDBKeyPath::createNull();
129 default: 133 default:
130 NOTREACHED(); 134 NOTREACHED();
131 return blink::WebIDBKeyPath::createNull(); 135 return blink::WebIDBKeyPath::createNull();
132 } 136 }
133 } 137 }
134 138
135 } // namespace content 139 } // namespace content
OLDNEW
« no previous file with comments | « content/child/indexed_db/indexed_db_dispatcher_unittest.cc ('k') | content/child/indexed_db/webidbcursor_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698