| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_CHILD_INDEXED_DB_PROXY_WEBIDBFACTORY_IMPL_H_ | 5 #ifndef CONTENT_CHILD_INDEXED_DB_PROXY_WEBIDBFACTORY_IMPL_H_ |
| 6 #define CONTENT_CHILD_INDEXED_DB_PROXY_WEBIDBFACTORY_IMPL_H_ | 6 #define CONTENT_CHILD_INDEXED_DB_PROXY_WEBIDBFACTORY_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
| 9 #include "third_party/WebKit/public/platform/WebIDBCallbacks.h" | 9 #include "third_party/WebKit/public/platform/WebIDBCallbacks.h" |
| 10 #include "third_party/WebKit/public/platform/WebIDBDatabaseCallbacks.h" | 10 #include "third_party/WebKit/public/platform/WebIDBDatabaseCallbacks.h" |
| 11 #include "third_party/WebKit/public/platform/WebIDBFactory.h" | 11 #include "third_party/WebKit/public/platform/WebIDBFactory.h" |
| 12 #include "third_party/WebKit/public/platform/WebVector.h" | 12 #include "third_party/WebKit/public/platform/WebVector.h" |
| 13 | 13 |
| 14 namespace net { |
| 15 class URLRequestContext; |
| 16 } |
| 17 |
| 14 namespace WebKit { | 18 namespace WebKit { |
| 15 class WebString; | 19 class WebString; |
| 16 } | 20 } |
| 17 | 21 |
| 18 namespace content { | 22 namespace content { |
| 19 class ThreadSafeSender; | 23 class ThreadSafeSender; |
| 20 | 24 |
| 21 class RendererWebIDBFactoryImpl : public WebKit::WebIDBFactory { | 25 class RendererWebIDBFactoryImpl : public WebKit::WebIDBFactory { |
| 22 public: | 26 public: |
| 23 explicit RendererWebIDBFactoryImpl(ThreadSafeSender* thread_safe_sender); | 27 explicit RendererWebIDBFactoryImpl(ThreadSafeSender* thread_safe_sender); |
| (...skipping 15 matching lines...) Expand all Loading... |
| 39 WebKit::WebIDBCallbacks* callbacks, | 43 WebKit::WebIDBCallbacks* callbacks, |
| 40 const WebKit::WebString& database_identifier); | 44 const WebKit::WebString& database_identifier); |
| 41 | 45 |
| 42 private: | 46 private: |
| 43 scoped_refptr<ThreadSafeSender> thread_safe_sender_; | 47 scoped_refptr<ThreadSafeSender> thread_safe_sender_; |
| 44 }; | 48 }; |
| 45 | 49 |
| 46 } // namespace content | 50 } // namespace content |
| 47 | 51 |
| 48 #endif // CONTENT_CHILD_INDEXED_DB_PROXY_WEBIDBFACTORY_IMPL_H_ | 52 #endif // CONTENT_CHILD_INDEXED_DB_PROXY_WEBIDBFACTORY_IMPL_H_ |
| OLD | NEW |