| 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 namespace blink { | 33 namespace blink { |
| 34 | 34 |
| 35 IDBCursorWithValue* IDBCursorWithValue::create(PassOwnPtr<WebIDBCursor> backend,
WebIDBCursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransa
ction* transaction) | 35 IDBCursorWithValue* IDBCursorWithValue::create(PassOwnPtr<WebIDBCursor> backend,
WebIDBCursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransa
ction* transaction) |
| 36 { | 36 { |
| 37 return new IDBCursorWithValue(backend, direction, request, source, transacti
on); | 37 return new IDBCursorWithValue(backend, direction, request, source, transacti
on); |
| 38 } | 38 } |
| 39 | 39 |
| 40 IDBCursorWithValue::IDBCursorWithValue(PassOwnPtr<WebIDBCursor> backend, WebIDBC
ursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransaction* t
ransaction) | 40 IDBCursorWithValue::IDBCursorWithValue(PassOwnPtr<WebIDBCursor> backend, WebIDBC
ursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransaction* t
ransaction) |
| 41 : IDBCursor(backend, direction, request, source, transaction) | 41 : IDBCursor(backend, direction, request, source, transaction) |
| 42 { | 42 { |
| 43 ScriptWrappable::init(this); | |
| 44 } | 43 } |
| 45 | 44 |
| 46 IDBCursorWithValue::~IDBCursorWithValue() | 45 IDBCursorWithValue::~IDBCursorWithValue() |
| 47 { | 46 { |
| 48 } | 47 } |
| 49 | 48 |
| 50 } // namespace blink | 49 } // namespace blink |
| OLD | NEW |