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

Side by Side Diff: third_party/WebKit/public/platform/modules/indexeddb/WebIDBFactory.h

Issue 2642943002: Allow closing IndexedDB database before deleting (Closed)
Patch Set: Fixed compilation errors in tests Created 3 years, 11 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
OLDNEW
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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 44
45 virtual void getDatabaseNames(WebIDBCallbacks*, const WebSecurityOrigin&) = 0; 45 virtual void getDatabaseNames(WebIDBCallbacks*, const WebSecurityOrigin&) = 0;
46 virtual void open(const WebString& name, 46 virtual void open(const WebString& name,
47 long long version, 47 long long version,
48 long long transactionId, 48 long long transactionId,
49 WebIDBCallbacks*, 49 WebIDBCallbacks*,
50 WebIDBDatabaseCallbacks*, 50 WebIDBDatabaseCallbacks*,
51 const WebSecurityOrigin&) = 0; 51 const WebSecurityOrigin&) = 0;
52 virtual void deleteDatabase(const WebString& name, 52 virtual void deleteDatabase(const WebString& name,
53 WebIDBCallbacks*, 53 WebIDBCallbacks*,
54 const WebSecurityOrigin&) = 0; 54 const WebSecurityOrigin&,
55 bool) = 0;
cmumford 2017/01/19 20:47:16 add param name.
eostroukhov 2017/01/20 18:43:18 Done.
55 }; 56 };
56 57
57 } // namespace blink 58 } // namespace blink
58 59
59 #endif // WebIDBFactory_h 60 #endif // WebIDBFactory_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698