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

Side by Side Diff: WebKit/chromium/public/platform/WebKitPlatformSupport.h

Issue 10012034: WebKit/WebCore DomStorage House cleaning (Closed) Base URL: http://svn.webkit.org/repository/webkit/trunk/Source/
Patch Set: Created 8 years, 8 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
« no previous file with comments | « WebKit/chromium/public/WebStorageNamespace.h ('k') | WebKit/chromium/src/StorageAreaProxy.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) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 // Blob ---------------------------------------------------------------- 85 // Blob ----------------------------------------------------------------
86 86
87 // Must return non-null. 87 // Must return non-null.
88 virtual WebBlobRegistry* blobRegistry() { return 0; } 88 virtual WebBlobRegistry* blobRegistry() { return 0; }
89 89
90 // DOM Storage -------------------------------------------------- 90 // DOM Storage --------------------------------------------------
91 91
92 // Return a LocalStorage namespace that corresponds to the following path. 92 // Return a LocalStorage namespace that corresponds to the following path.
93 virtual WebStorageNamespace* createLocalStorageNamespace(const WebString& pa th, unsigned quota) { return 0; } 93 virtual WebStorageNamespace* createLocalStorageNamespace(const WebString& pa th, unsigned quota) { return 0; }
94 94
95 // Called when storage events fire. 95 // DEPRECATED
96 virtual void dispatchStorageEvent(const WebString& key, const WebString& old Value, 96 virtual void dispatchStorageEvent(const WebString& key, const WebString& old Value,
97 const WebString& newValue, const WebString & origin, 97 const WebString& newValue, const WebString & origin,
98 const WebURL& url, bool isLocalStorage) { } 98 const WebURL& url, bool isLocalStorage) { }
99 99
100 100
101 // HTML5 Database ------------------------------------------------------ 101 // HTML5 Database ------------------------------------------------------
102 102
103 #ifdef WIN32 103 #ifdef WIN32
104 typedef HANDLE FileHandle; 104 typedef HANDLE FileHandle;
105 #else 105 #else
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 virtual void didStartWorkerRunLoop(const WebWorkerRunLoop&) { } 180 virtual void didStartWorkerRunLoop(const WebWorkerRunLoop&) { }
181 virtual void didStopWorkerRunLoop(const WebWorkerRunLoop&) { } 181 virtual void didStopWorkerRunLoop(const WebWorkerRunLoop&) { }
182 182
183 protected: 183 protected:
184 ~WebKitPlatformSupport() { } 184 ~WebKitPlatformSupport() { }
185 }; 185 };
186 186
187 } // namespace WebKit 187 } // namespace WebKit
188 188
189 #endif 189 #endif
OLDNEW
« no previous file with comments | « WebKit/chromium/public/WebStorageNamespace.h ('k') | WebKit/chromium/src/StorageAreaProxy.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698