| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 21 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 26 */ | 26 */ |
| 27 | 27 |
| 28 #include "config.h" | 28 #include "config.h" |
| 29 #include "WebIDBKey.h" | 29 #include "WebIDBKey.h" |
| 30 | 30 |
| 31 #include "IDBKey.h" | 31 #include "modules/indexeddb/IDBKey.h" |
| 32 | 32 |
| 33 using namespace WebCore; | 33 using namespace WebCore; |
| 34 | 34 |
| 35 namespace WebKit { | 35 namespace WebKit { |
| 36 | 36 |
| 37 WebIDBKey WebIDBKey::createArray(const WebVector<WebIDBKey>& array) | 37 WebIDBKey WebIDBKey::createArray(const WebVector<WebIDBKey>& array) |
| 38 { | 38 { |
| 39 WebIDBKey key; | 39 WebIDBKey key; |
| 40 key.assignArray(array); | 40 key.assignArray(array); |
| 41 return key; | 41 return key; |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 m_private = value; | 222 m_private = value; |
| 223 return *this; | 223 return *this; |
| 224 } | 224 } |
| 225 | 225 |
| 226 WebIDBKey::operator PassRefPtr<IDBKey>() const | 226 WebIDBKey::operator PassRefPtr<IDBKey>() const |
| 227 { | 227 { |
| 228 return m_private.get(); | 228 return m_private.get(); |
| 229 } | 229 } |
| 230 | 230 |
| 231 } // namespace WebKit | 231 } // namespace WebKit |
| OLD | NEW |