| 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_range.h" | 5 #include "content/common/indexed_db/indexed_db_key_range.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "third_party/WebKit/public/platform/WebIDBTypes.h" | 8 #include "third_party/WebKit/public/platform/WebIDBTypes.h" |
| 9 | 9 |
| 10 namespace content { | 10 namespace content { |
| 11 | 11 |
| 12 IndexedDBKeyRange::IndexedDBKeyRange() | 12 IndexedDBKeyRange::IndexedDBKeyRange() |
| 13 : lower_(blink::WebIDBKeyTypeNull), | 13 : lower_(blink::WebIDBKeyTypeNull), |
| 14 upper_(blink::WebIDBKeyTypeNull), | 14 upper_(blink::WebIDBKeyTypeNull), |
| 15 lower_open_(false), | 15 lower_open_(false), |
| 16 upper_open_(false) {} | 16 upper_open_(false) {} |
| 17 | 17 |
| 18 IndexedDBKeyRange::IndexedDBKeyRange(const IndexedDBKey& lower, | 18 IndexedDBKeyRange::IndexedDBKeyRange(const IndexedDBKey& lower, |
| 19 const IndexedDBKey& upper, | 19 const IndexedDBKey& upper, |
| 20 bool lower_open, | 20 bool lower_open, |
| 21 bool upper_open) | 21 bool upper_open) |
| 22 : lower_(lower), | 22 : lower_(lower), |
| 23 upper_(upper), | 23 upper_(upper), |
| 24 lower_open_(lower_open), | 24 lower_open_(lower_open), |
| 25 upper_open_(upper_open) {} | 25 upper_open_(upper_open) {} |
| 26 | 26 |
| 27 IndexedDBKeyRange::IndexedDBKeyRange(const IndexedDBKey& key) | 27 IndexedDBKeyRange::IndexedDBKeyRange(const IndexedDBKey& key) |
| 28 : lower_(key), upper_(key), lower_open_(false), upper_open_(false) {} | 28 : lower_(key), upper_(key), lower_open_(false), upper_open_(false) {} |
| 29 | 29 |
| 30 IndexedDBKeyRange::~IndexedDBKeyRange() {} | 30 IndexedDBKeyRange::IndexedDBKeyRange(const IndexedDBKeyRange& other) = default; |
| 31 IndexedDBKeyRange::~IndexedDBKeyRange() = default; |
| 32 IndexedDBKeyRange& IndexedDBKeyRange::operator=( |
| 33 const IndexedDBKeyRange& other) = default; |
| 31 | 34 |
| 32 bool IndexedDBKeyRange::IsOnlyKey() const { | 35 bool IndexedDBKeyRange::IsOnlyKey() const { |
| 33 if (lower_open_ || upper_open_) | 36 if (lower_open_ || upper_open_) |
| 34 return false; | 37 return false; |
| 35 | 38 |
| 36 return lower_.Equals(upper_); | 39 return lower_.Equals(upper_); |
| 37 } | 40 } |
| 38 | 41 |
| 39 } // namespace content | 42 } // namespace content |
| OLD | NEW |