OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |