| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 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 13 matching lines...) Expand all Loading... |
| 24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 */ | 27 */ |
| 28 | 28 |
| 29 #ifndef IndexedDBClientImpl_h | 29 #ifndef IndexedDBClientImpl_h |
| 30 #define IndexedDBClientImpl_h | 30 #define IndexedDBClientImpl_h |
| 31 | 31 |
| 32 #include "modules/indexeddb/IndexedDBClient.h" | 32 #include "modules/indexeddb/IndexedDBClient.h" |
| 33 | 33 |
| 34 namespace WebCore { | 34 namespace blink { |
| 35 class ExecutionContext; | 35 class ExecutionContext; |
| 36 } | 36 } |
| 37 | 37 |
| 38 namespace blink { | 38 namespace blink { |
| 39 | 39 |
| 40 class IndexedDBClientImpl FINAL : public WebCore::IndexedDBClient { | 40 class IndexedDBClientImpl FINAL : public blink::IndexedDBClient { |
| 41 public: | 41 public: |
| 42 static WebCore::IndexedDBClient* create(); | 42 static blink::IndexedDBClient* create(); |
| 43 | 43 |
| 44 virtual bool allowIndexedDB(WebCore::ExecutionContext*, const String& name)
OVERRIDE; | 44 virtual bool allowIndexedDB(blink::ExecutionContext*, const String& name) OV
ERRIDE; |
| 45 | 45 |
| 46 private: | 46 private: |
| 47 IndexedDBClientImpl() { } | 47 IndexedDBClientImpl() { } |
| 48 }; | 48 }; |
| 49 | 49 |
| 50 } // namespace blink | 50 } // namespace blink |
| 51 | 51 |
| 52 #endif // IndexedDBClientImpl_h | 52 #endif // IndexedDBClientImpl_h |
| OLD | NEW |