Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(163)

Side by Side Diff: webkit/api/src/StorageNamespaceProxy.cpp

Issue 255065: The second half of http://trac.webkit.org/changeset/49040... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « DEPS ('k') | webkit/api/src/WebStorageNamespaceImpl.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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)
OLDNEW
« no previous file with comments | « DEPS ('k') | webkit/api/src/WebStorageNamespaceImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698