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

Side by Side Diff: Source/modules/indexeddb/IDBAny.h

Issue 23653024: IndexedDB: Have IDBCursor and IDBRequest explicitly break ref cycles (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 3 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 IDBObjectStoreType, 84 IDBObjectStoreType,
85 IDBTransactionType, 85 IDBTransactionType,
86 ScriptValueType, 86 ScriptValueType,
87 IntegerType, 87 IntegerType,
88 StringType, 88 StringType,
89 KeyPathType, 89 KeyPathType,
90 }; 90 };
91 91
92 Type type() const { return m_type; } 92 Type type() const { return m_type; }
93 // Use type() to figure out which one of these you're allowed to call. 93 // Use type() to figure out which one of these you're allowed to call.
94 PassRefPtr<DOMStringList> domStringList(); 94 DOMStringList* domStringList();
jsbell 2013/09/06 00:27:51 This may seem unrelated, but without this the requ
95 PassRefPtr<IDBCursor> idbCursor(); 95 IDBCursor* idbCursor();
96 PassRefPtr<IDBCursorWithValue> idbCursorWithValue(); 96 IDBCursorWithValue* idbCursorWithValue();
97 PassRefPtr<IDBDatabase> idbDatabase(); 97 IDBDatabase* idbDatabase();
98 PassRefPtr<IDBFactory> idbFactory(); 98 IDBFactory* idbFactory();
99 PassRefPtr<IDBIndex> idbIndex(); 99 IDBIndex* idbIndex();
100 PassRefPtr<IDBObjectStore> idbObjectStore(); 100 IDBObjectStore* idbObjectStore();
101 PassRefPtr<IDBTransaction> idbTransaction(); 101 IDBTransaction* idbTransaction();
102 const ScriptValue& scriptValue(); 102 const ScriptValue& scriptValue();
103 int64_t integer(); 103 int64_t integer();
104 const String& string(); 104 const String& string();
105 const IDBKeyPath& keyPath() { return m_idbKeyPath; }; 105 const IDBKeyPath& keyPath() { return m_idbKeyPath; };
106 106
107 private: 107 private:
108 explicit IDBAny(Type); 108 explicit IDBAny(Type);
109 explicit IDBAny(PassRefPtr<DOMStringList>); 109 explicit IDBAny(PassRefPtr<DOMStringList>);
110 explicit IDBAny(PassRefPtr<IDBCursor>); 110 explicit IDBAny(PassRefPtr<IDBCursor>);
111 explicit IDBAny(PassRefPtr<IDBCursorWithValue>); 111 explicit IDBAny(PassRefPtr<IDBCursorWithValue>);
(...skipping 20 matching lines...) Expand all
132 const RefPtr<IDBTransaction> m_idbTransaction; 132 const RefPtr<IDBTransaction> m_idbTransaction;
133 const IDBKeyPath m_idbKeyPath; 133 const IDBKeyPath m_idbKeyPath;
134 const ScriptValue m_scriptValue; 134 const ScriptValue m_scriptValue;
135 const String m_string; 135 const String m_string;
136 const int64_t m_integer; 136 const int64_t m_integer;
137 }; 137 };
138 138
139 } // namespace WebCore 139 } // namespace WebCore
140 140
141 #endif // IDBAny_h 141 #endif // IDBAny_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698