| 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 21 matching lines...) Expand all Loading... |
| 32 #include "platform/SharedBuffer.h" | 32 #include "platform/SharedBuffer.h" |
| 33 #include "wtf/Forward.h" | 33 #include "wtf/Forward.h" |
| 34 #include "wtf/text/WTFString.h" | 34 #include "wtf/text/WTFString.h" |
| 35 | 35 |
| 36 namespace blink { | 36 namespace blink { |
| 37 | 37 |
| 38 class WebBlobInfo; | 38 class WebBlobInfo; |
| 39 | 39 |
| 40 } | 40 } |
| 41 | 41 |
| 42 namespace WebCore { | 42 namespace blink { |
| 43 | 43 |
| 44 class DOMStringList; | 44 class DOMStringList; |
| 45 class IDBCursor; | 45 class IDBCursor; |
| 46 class IDBCursorWithValue; | 46 class IDBCursorWithValue; |
| 47 class IDBDatabase; | 47 class IDBDatabase; |
| 48 class IDBIndex; | 48 class IDBIndex; |
| 49 class IDBKeyPath; | 49 class IDBKeyPath; |
| 50 class IDBObjectStore; | 50 class IDBObjectStore; |
| 51 class IDBTransaction; | 51 class IDBTransaction; |
| 52 | 52 |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 const Member<IDBObjectStore> m_idbObjectStore; | 145 const Member<IDBObjectStore> m_idbObjectStore; |
| 146 const Member<IDBTransaction> m_idbTransaction; | 146 const Member<IDBTransaction> m_idbTransaction; |
| 147 const Member<IDBKey> m_idbKey; | 147 const Member<IDBKey> m_idbKey; |
| 148 const IDBKeyPath m_idbKeyPath; | 148 const IDBKeyPath m_idbKeyPath; |
| 149 const RefPtr<SharedBuffer> m_buffer; | 149 const RefPtr<SharedBuffer> m_buffer; |
| 150 const Vector<blink::WebBlobInfo>* m_blobInfo; | 150 const Vector<blink::WebBlobInfo>* m_blobInfo; |
| 151 const String m_string; | 151 const String m_string; |
| 152 const int64_t m_integer; | 152 const int64_t m_integer; |
| 153 }; | 153 }; |
| 154 | 154 |
| 155 } // namespace WebCore | 155 } // namespace blink |
| 156 | 156 |
| 157 #endif // IDBAny_h | 157 #endif // IDBAny_h |
| OLD | NEW |