| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All Rights Reserved. | 2 * Copyright (C) 2009 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 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 #include "SecurityOrigin.h" | 31 #include "SecurityOrigin.h" |
| 32 #include "StorageAreaProxy.h" | 32 #include "StorageAreaProxy.h" |
| 33 #include "WebKit.h" | 33 #include "WebKit.h" |
| 34 #include "WebKitClient.h" | 34 #include "WebKitClient.h" |
| 35 #include "WebStorageNamespace.h" | 35 #include "WebStorageNamespace.h" |
| 36 #include "WebString.h" | 36 #include "WebString.h" |
| 37 | 37 |
| 38 namespace WebCore { | 38 namespace WebCore { |
| 39 | 39 |
| 40 PassRefPtr<StorageNamespace> StorageNamespace::localStorageNamespace(const String& path) | 40 PassRefPtr<StorageNamespace> StorageNamespace::localStorageNamespace(const String& path, unsigned quota) |
| 41 { | 41 { |
| 42 return new StorageNamespaceProxy(WebKit::webKitClient()->createLocalStorageNamespace(path)); | 42 return new StorageNamespaceProxy(WebKit::webKitClient()->createLocalStorageNamespace(path)); |
| 43 } | 43 } |
| 44 | 44 |
| 45 PassRefPtr<StorageNamespace> StorageNamespace::sessionStorageNamespace() | 45 PassRefPtr<StorageNamespace> StorageNamespace::sessionStorageNamespace() |
| 46 { | 46 { |
| 47 return new StorageNamespaceProxy(WebKit::webKitClient()->createSessionStorageNamespace()); | 47 return new StorageNamespaceProxy(WebKit::webKitClient()->createSessionStorageNamespace()); |
| 48 } | 48 } |
| 49 | 49 |
| 50 StorageNamespaceProxy::StorageNamespaceProxy(WebKit::WebStorageNamespace* storageNamespace) | 50 StorageNamespaceProxy::StorageNamespaceProxy(WebKit::WebStorageNamespace* storageNamespace) |
| (...skipping 21 matching lines...) Expand all Loading... |
| 72 } | 72 } |
| 73 | 73 |
| 74 void StorageNamespaceProxy::unlock() | 74 void StorageNamespaceProxy::unlock() |
| 75 { | 75 { |
| 76 // FIXME: Implement. | 76 // FIXME: Implement. |
| 77 } | 77 } |
| 78 | 78 |
| 79 } // namespace WebCore | 79 } // namespace WebCore |
| 80 | 80 |
| 81 #endif // ENABLE(DOM_STORAGE) | 81 #endif // ENABLE(DOM_STORAGE) |
| OLD | NEW |