| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "config.h" | |
| 6 #include "modules/indexeddb/IDBValue.h" | 5 #include "modules/indexeddb/IDBValue.h" |
| 7 | 6 |
| 8 #include "platform/blob/BlobData.h" | 7 #include "platform/blob/BlobData.h" |
| 9 #include "public/platform/WebBlobInfo.h" | 8 #include "public/platform/WebBlobInfo.h" |
| 10 #include "public/platform/modules/indexeddb/WebIDBValue.h" | 9 #include "public/platform/modules/indexeddb/WebIDBValue.h" |
| 11 | 10 |
| 12 namespace blink { | 11 namespace blink { |
| 13 | 12 |
| 14 IDBValue::IDBValue() = default; | 13 IDBValue::IDBValue() = default; |
| 15 | 14 |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 { | 71 { |
| 73 return m_data.get(); | 72 return m_data.get(); |
| 74 } | 73 } |
| 75 | 74 |
| 76 bool IDBValue::isNull() const | 75 bool IDBValue::isNull() const |
| 77 { | 76 { |
| 78 return !m_data.get(); | 77 return !m_data.get(); |
| 79 } | 78 } |
| 80 | 79 |
| 81 } // namespace blink | 80 } // namespace blink |
| OLD | NEW |