Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(75)

Side by Side Diff: third_party/WebCore/Modules/indexeddb/IDBObjectStore.idl

Issue 10358016: Roll IDL to multivm@477 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
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) 46 [CallWith=ScriptExecutionContext] IDBRequest get(in IDBKeyRange key)
47 raises (IDBDatabaseException); 47 raises (IDBDatabaseException);
48 [CallWith=ScriptExecutionContext] IDBRequest get(in IDBKey key) 48 [CallWith=ScriptExecutionContext] IDBRequest get(in IDBKey key)
49 raises (IDBDatabaseException); 49 raises (IDBDatabaseException);
50 [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)
51 raises (IDBDatabaseException); 51 raises (IDBDatabaseException);
52 [CallWith=ScriptExecutionContext] IDBRequest openCursor(in IDBKey key, i n [Optional] unsigned short direction)
53 raises (IDBDatabaseException);
52 IDBIndex createIndex(in DOMString name, in DOMString keyPath, in [Option al] Dictionary options) 54 IDBIndex createIndex(in DOMString name, in DOMString keyPath, in [Option al] Dictionary options)
53 raises (IDBDatabaseException); 55 raises (IDBDatabaseException);
54 IDBIndex index(in DOMString name) 56 IDBIndex index(in DOMString name)
55 raises (IDBDatabaseException); 57 raises (IDBDatabaseException);
56 void deleteIndex(in DOMString name) 58 void deleteIndex(in DOMString name)
57 raises (IDBDatabaseException); 59 raises (IDBDatabaseException);
58 [CallWith=ScriptExecutionContext] IDBRequest count(in [Optional] IDBKeyR ange range) 60 [CallWith=ScriptExecutionContext] IDBRequest count(in [Optional] IDBKeyR ange range)
59 raises (IDBDatabaseException); 61 raises (IDBDatabaseException);
60 [CallWith=ScriptExecutionContext] IDBRequest count(in IDBKey key) 62 [CallWith=ScriptExecutionContext] IDBRequest count(in IDBKey key)
61 raises (IDBDatabaseException); 63 raises (IDBDatabaseException);
62 }; 64 };
63 } 65 }
OLDNEW
« no previous file with comments | « third_party/WebCore/Modules/indexeddb/IDBIndex.idl ('k') | third_party/WebCore/Modules/intents/Intent.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698