OLD | NEW |
1 2010-12-10 Hans Wennborg <hans@chromium.org> | 1 2010-12-07 Jeremy Orlow <jorlow@chromium.org> |
2 | 2 |
| 3 Reviewed by Steve Block. |
| 4 |
| 5 IndexedDB returns the wrong exceptions |
| 6 https://bugs.webkit.org/show_bug.cgi?id=50632 |
| 7 |
| 8 IndexedDB exceptions need to have an offset so they can |
| 9 be distinguished from DOM exceptions. We also need to |
| 10 add strings for the various exceptions. Lastly, make |
| 11 IDBDatabaseException use the common exception base class. |
| 12 |
| 13 * bindings/js/JSDOMBinding.cpp: |
| 14 (WebCore::setDOMException): |
| 15 * bindings/v8/V8Proxy.cpp: |
| 16 (WebCore::V8Proxy::setDOMException): |
| 17 * dom/ExceptionCode.cpp: |
| 18 (WebCore::getExceptionCodeDescription): |
| 19 * dom/ExceptionCode.h: |
| 20 * storage/IDBDatabaseError.h: |
| 21 (WebCore::IDBDatabaseError::code): |
| 22 * storage/IDBDatabaseException.h: |
| 23 (WebCore::IDBDatabaseException::create): |
| 24 (WebCore::IDBDatabaseException::ErrorCodeToExceptionCode): |
| 25 (WebCore::IDBDatabaseException::IDBDatabaseException): |
| 26 * storage/IDBDatabaseException.idl: |
| 27 |
| 28 2010-12-09 Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk> |
| 29 |
3 Reviewed by Jeremy Orlow. | 30 Reviewed by Jeremy Orlow. |
4 | 31 |
5 IndexedDB: Numeric keys are floats. | 32 IndexedDB: Numeric keys are floats. |
6 https://bugs.webkit.org/show_bug.cgi?id=50674 | 33 https://bugs.webkit.org/show_bug.cgi?id=50674 |
7 | 34 |
8 Use floating point to represent numeric keys, | 35 Use floating point to represent numeric keys, |
9 add version meta data to the SQLite db, | 36 add version meta data to the SQLite db, |
10 and migrate object stores that use integers. | 37 and migrate object stores that use integers. |
11 | 38 |
12 * bindings/v8/IDBBindingUtilities.cpp: | 39 * bindings/v8/IDBBindingUtilities.cpp: |
(...skipping 2455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2468 (WebCore::ScriptCallFrame::buildInspectorObject): | 2495 (WebCore::ScriptCallFrame::buildInspectorObject): |
2469 * inspector/ScriptCallFrame.h: | 2496 * inspector/ScriptCallFrame.h: |
2470 (WebCore::ScriptCallFrame::sourceURL): | 2497 (WebCore::ScriptCallFrame::sourceURL): |
2471 * inspector/ScriptCallStack.h: | 2498 * inspector/ScriptCallStack.h: |
2472 * inspector/TimelineRecordFactory.cpp: | 2499 * inspector/TimelineRecordFactory.cpp: |
2473 (WebCore::TimelineRecordFactory::createGenericRecord): | 2500 (WebCore::TimelineRecordFactory::createGenericRecord): |
2474 * inspector/front-end/ConsoleView.js: | 2501 * inspector/front-end/ConsoleView.js: |
2475 (WebInspector.ConsoleMessage.prototype._populateStackTraceTreeElement): | 2502 (WebInspector.ConsoleMessage.prototype._populateStackTraceTreeElement): |
2476 | 2503 |
2477 == Rolled over to ChangeLog-2010-12-06 == | 2504 == Rolled over to ChangeLog-2010-12-06 == |
OLD | NEW |