| 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 25 matching lines...) Expand all Loading... |
| 36 [CallWith=ScriptExecutionContext] IDBRequest put(in SerializedScriptValu
e value, in [Optional] IDBKey key) | 36 [CallWith=ScriptExecutionContext] IDBRequest put(in SerializedScriptValu
e value, in [Optional] IDBKey key) |
| 37 raises (IDBDatabaseException); | 37 raises (IDBDatabaseException); |
| 38 [CallWith=ScriptExecutionContext] IDBRequest add(in SerializedScriptValu
e value, in [Optional] IDBKey key) | 38 [CallWith=ScriptExecutionContext] IDBRequest add(in SerializedScriptValu
e value, in [Optional] IDBKey key) |
| 39 raises (IDBDatabaseException); | 39 raises (IDBDatabaseException); |
| 40 [CallWith=ScriptExecutionContext, ImplementedAs=deleteFunction] IDBReque
st delete(in IDBKeyRange keyRange) | 40 [CallWith=ScriptExecutionContext, ImplementedAs=deleteFunction] IDBReque
st delete(in IDBKeyRange keyRange) |
| 41 raises (IDBDatabaseException); | 41 raises (IDBDatabaseException); |
| 42 [CallWith=ScriptExecutionContext, ImplementedAs=deleteFunction] IDBReque
st delete(in IDBKey key) | 42 [CallWith=ScriptExecutionContext, ImplementedAs=deleteFunction] IDBReque
st delete(in IDBKey key) |
| 43 raises (IDBDatabaseException); | 43 raises (IDBDatabaseException); |
| 44 [CallWith=ScriptExecutionContext] IDBRequest clear() | 44 [CallWith=ScriptExecutionContext] IDBRequest clear() |
| 45 raises (IDBDatabaseException); | 45 raises (IDBDatabaseException); |
| 46 [CallWith=ScriptExecutionContext] IDBRequest get(in IDBKeyRange key) |
| 47 raises (IDBDatabaseException); |
| 46 [CallWith=ScriptExecutionContext] IDBRequest get(in IDBKey key) | 48 [CallWith=ScriptExecutionContext] IDBRequest get(in IDBKey key) |
| 47 raises (IDBDatabaseException); | 49 raises (IDBDatabaseException); |
| 48 [CallWith=ScriptExecutionContext] IDBRequest openCursor(in [Optional] ID
BKeyRange range, in [Optional] unsigned short direction) | 50 [CallWith=ScriptExecutionContext] IDBRequest openCursor(in [Optional] ID
BKeyRange range, in [Optional] unsigned short direction) |
| 49 raises (IDBDatabaseException); | 51 raises (IDBDatabaseException); |
| 50 IDBIndex createIndex(in DOMString name, in DOMString keyPath, in [Option
al] Dictionary options) | 52 IDBIndex createIndex(in DOMString name, in DOMString keyPath, in [Option
al] Dictionary options) |
| 51 raises (IDBDatabaseException); | 53 raises (IDBDatabaseException); |
| 52 IDBIndex index(in DOMString name) | 54 IDBIndex index(in DOMString name) |
| 53 raises (IDBDatabaseException); | 55 raises (IDBDatabaseException); |
| 54 void deleteIndex(in DOMString name) | 56 void deleteIndex(in DOMString name) |
| 55 raises (IDBDatabaseException); | 57 raises (IDBDatabaseException); |
| 56 [CallWith=ScriptExecutionContext] IDBRequest count(in [Optional] IDBKeyR
ange range) | 58 [CallWith=ScriptExecutionContext] IDBRequest count(in [Optional] IDBKeyR
ange range) |
| 57 raises (IDBDatabaseException); | 59 raises (IDBDatabaseException); |
| 58 [CallWith=ScriptExecutionContext] IDBRequest count(in IDBKey key) | 60 [CallWith=ScriptExecutionContext] IDBRequest count(in IDBKey key) |
| 59 raises (IDBDatabaseException); | 61 raises (IDBDatabaseException); |
| 60 }; | 62 }; |
| 61 } | 63 } |
| OLD | NEW |