| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 raises (IDBDatabaseException); | 52 raises (IDBDatabaseException); |
| 53 [CallWith=ScriptExecutionContext] IDBRequest openCursor(in IDBKey key, i
n [Optional] DOMString direction) | 53 [CallWith=ScriptExecutionContext] IDBRequest openCursor(in IDBKey key, i
n [Optional] DOMString direction) |
| 54 raises (IDBDatabaseException); | 54 raises (IDBDatabaseException); |
| 55 | 55 |
| 56 // FIXME: remove these when https://bugs.webkit.org/show_bug.cgi?id=8532
6 is fixed. | 56 // FIXME: remove these when https://bugs.webkit.org/show_bug.cgi?id=8532
6 is fixed. |
| 57 [CallWith=ScriptExecutionContext] IDBRequest openCursor(in [Optional] ID
BKeyRange? range, in [Optional] unsigned short direction) | 57 [CallWith=ScriptExecutionContext] IDBRequest openCursor(in [Optional] ID
BKeyRange? range, in [Optional] unsigned short direction) |
| 58 raises (IDBDatabaseException); | 58 raises (IDBDatabaseException); |
| 59 [CallWith=ScriptExecutionContext] IDBRequest openCursor(in IDBKey key, i
n unsigned short direction) | 59 [CallWith=ScriptExecutionContext] IDBRequest openCursor(in IDBKey key, i
n unsigned short direction) |
| 60 raises (IDBDatabaseException); | 60 raises (IDBDatabaseException); |
| 61 | 61 |
| 62 IDBIndex createIndex(in DOMString name, in DOMString[]? keyPath, in [Opt
ional] Dictionary options) | 62 IDBIndex createIndex(in DOMString name, in DOMString[] keyPath, in [Opti
onal] Dictionary options) |
| 63 raises (IDBDatabaseException); | 63 raises (IDBDatabaseException); |
| 64 IDBIndex createIndex(in DOMString name, in DOMString keyPath, in [Option
al] Dictionary options) | 64 IDBIndex createIndex(in DOMString name, in DOMString keyPath, in [Option
al] Dictionary options) |
| 65 raises (IDBDatabaseException); | 65 raises (IDBDatabaseException); |
| 66 IDBIndex index(in DOMString name) | 66 IDBIndex index(in DOMString name) |
| 67 raises (IDBDatabaseException); | 67 raises (IDBDatabaseException); |
| 68 void deleteIndex(in DOMString name) | 68 void deleteIndex(in DOMString name) |
| 69 raises (IDBDatabaseException); | 69 raises (IDBDatabaseException); |
| 70 [CallWith=ScriptExecutionContext] IDBRequest count(in [Optional] IDBKeyR
ange? range) | 70 [CallWith=ScriptExecutionContext] IDBRequest count(in [Optional] IDBKeyR
ange? range) |
| 71 raises (IDBDatabaseException); | 71 raises (IDBDatabaseException); |
| 72 [CallWith=ScriptExecutionContext] IDBRequest count(in IDBKey key) | 72 [CallWith=ScriptExecutionContext] IDBRequest count(in IDBKey key) |
| 73 raises (IDBDatabaseException); | 73 raises (IDBDatabaseException); |
| 74 }; | 74 }; |
| 75 } | 75 } |
| OLD | NEW |