Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 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 are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * 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 * | 10 * |
| (...skipping 24 matching lines...) Expand all Loading... | |
| 35 #include "wtf/RefPtr.h" | 35 #include "wtf/RefPtr.h" |
| 36 | 36 |
| 37 namespace blink { | 37 namespace blink { |
| 38 | 38 |
| 39 class IDBRequest; | 39 class IDBRequest; |
| 40 class WebBlobInfo; | 40 class WebBlobInfo; |
| 41 class WebData; | 41 class WebData; |
| 42 class WebIDBCursor; | 42 class WebIDBCursor; |
| 43 class WebIDBDatabase; | 43 class WebIDBDatabase; |
| 44 class WebIDBDatabaseError; | 44 class WebIDBDatabaseError; |
| 45 class WebIDBIndex; | |
|
jsbell
2014/10/13 18:43:22
Can you remove this from WebIDBCallbackImpl.cpp as
| |
| 46 class WebIDBKey; | 45 class WebIDBKey; |
| 47 class WebIDBKeyPath; | 46 class WebIDBKeyPath; |
| 48 struct WebIDBMetadata; | 47 struct WebIDBMetadata; |
| 49 | 48 |
| 50 class WebIDBCallbacksImpl final : public WebIDBCallbacks { | 49 class WebIDBCallbacksImpl final : public WebIDBCallbacks { |
| 51 public: | 50 public: |
| 52 static PassOwnPtr<WebIDBCallbacksImpl> create(IDBRequest*); | 51 static PassOwnPtr<WebIDBCallbacksImpl> create(IDBRequest*); |
| 53 | 52 |
| 54 virtual ~WebIDBCallbacksImpl(); | 53 virtual ~WebIDBCallbacksImpl(); |
| 55 | 54 |
| (...skipping 14 matching lines...) Expand all Loading... | |
| 70 private: | 69 private: |
| 71 explicit WebIDBCallbacksImpl(IDBRequest*); | 70 explicit WebIDBCallbacksImpl(IDBRequest*); |
| 72 | 71 |
| 73 Persistent<IDBRequest> m_request; | 72 Persistent<IDBRequest> m_request; |
| 74 int m_asyncOperationId; | 73 int m_asyncOperationId; |
| 75 }; | 74 }; |
| 76 | 75 |
| 77 } // namespace blink | 76 } // namespace blink |
| 78 | 77 |
| 79 #endif // WebIDBCallbacksImpl_h | 78 #endif // WebIDBCallbacksImpl_h |
| OLD | NEW |