OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_COMMON_INDEXED_DB_PROXY_WEBIDBFACTORY_IMPL_H_ | 5 #ifndef CONTENT_COMMON_INDEXED_DB_PROXY_WEBIDBFACTORY_IMPL_H_ |
6 #define CONTENT_COMMON_INDEXED_DB_PROXY_WEBIDBFACTORY_IMPL_H_ | 6 #define CONTENT_COMMON_INDEXED_DB_PROXY_WEBIDBFACTORY_IMPL_H_ |
7 | 7 |
| 8 #include "third_party/WebKit/Source/Platform/chromium/public/WebVector.h" |
8 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBCallbacks.h" | 9 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBCallbacks.h" |
9 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBDatabaseCallbac
ks.h" | 10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBDatabaseCallbac
ks.h" |
10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBFactory.h" | 11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBFactory.h" |
11 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebVector.h" | |
12 | 12 |
13 namespace WebKit { | 13 namespace WebKit { |
14 class WebFrame; | 14 class WebFrame; |
15 class WebSecurityOrigin; | 15 class WebSecurityOrigin; |
16 class WebString; | 16 class WebString; |
17 } | 17 } |
18 | 18 |
19 namespace content { | 19 namespace content { |
20 | 20 |
21 class RendererWebIDBFactoryImpl : public WebKit::WebIDBFactory { | 21 class RendererWebIDBFactoryImpl : public WebKit::WebIDBFactory { |
(...skipping 28 matching lines...) Expand all Loading... |
50 const WebKit::WebString& name, | 50 const WebKit::WebString& name, |
51 WebKit::WebIDBCallbacks* callbacks, | 51 WebKit::WebIDBCallbacks* callbacks, |
52 const WebKit::WebSecurityOrigin& origin, | 52 const WebKit::WebSecurityOrigin& origin, |
53 WebKit::WebFrame* web_frame, | 53 WebKit::WebFrame* web_frame, |
54 const WebKit::WebString& data_dir); | 54 const WebKit::WebString& data_dir); |
55 }; | 55 }; |
56 | 56 |
57 } // namespace content | 57 } // namespace content |
58 | 58 |
59 #endif // CONTENT_COMMON_INDEXED_DB_PROXY_WEBIDBFACTORY_IMPL_H_ | 59 #endif // CONTENT_COMMON_INDEXED_DB_PROXY_WEBIDBFACTORY_IMPL_H_ |
OLD | NEW |