| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 // Blob ---------------------------------------------------------------- | 81 // Blob ---------------------------------------------------------------- |
| 82 | 82 |
| 83 // Must return non-null. | 83 // Must return non-null. |
| 84 virtual WebBlobRegistry* blobRegistry() { return 0; } | 84 virtual WebBlobRegistry* blobRegistry() { return 0; } |
| 85 | 85 |
| 86 // DOM Storage -------------------------------------------------- | 86 // DOM Storage -------------------------------------------------- |
| 87 | 87 |
| 88 // Return a LocalStorage namespace that corresponds to the following path. | 88 // Return a LocalStorage namespace that corresponds to the following path. |
| 89 virtual WebStorageNamespace* createLocalStorageNamespace(const WebString& pa
th, unsigned quota) { return 0; } | 89 virtual WebStorageNamespace* createLocalStorageNamespace(const WebString& pa
th, unsigned quota) { return 0; } |
| 90 | 90 |
| 91 // DEPRECATED |
| 92 virtual void dispatchStorageEvent(const WebString& key, const WebString& old
Value, |
| 93 const WebString& newValue, const WebString
& origin, |
| 94 const WebURL& url, bool isLocalStorage) {
} |
| 95 |
| 91 | 96 |
| 92 // HTML5 Database ------------------------------------------------------ | 97 // HTML5 Database ------------------------------------------------------ |
| 93 | 98 |
| 94 #ifdef WIN32 | 99 #ifdef WIN32 |
| 95 typedef HANDLE FileHandle; | 100 typedef HANDLE FileHandle; |
| 96 #else | 101 #else |
| 97 typedef int FileHandle; | 102 typedef int FileHandle; |
| 98 #endif | 103 #endif |
| 99 | 104 |
| 100 // Opens a database file; dirHandle should be 0 if the caller does not need | 105 // Opens a database file; dirHandle should be 0 if the caller does not need |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 virtual void didStartWorkerRunLoop(const WebWorkerRunLoop&) { } | 177 virtual void didStartWorkerRunLoop(const WebWorkerRunLoop&) { } |
| 173 virtual void didStopWorkerRunLoop(const WebWorkerRunLoop&) { } | 178 virtual void didStopWorkerRunLoop(const WebWorkerRunLoop&) { } |
| 174 | 179 |
| 175 protected: | 180 protected: |
| 176 ~WebKitPlatformSupport() { } | 181 ~WebKitPlatformSupport() { } |
| 177 }; | 182 }; |
| 178 | 183 |
| 179 } // namespace WebKit | 184 } // namespace WebKit |
| 180 | 185 |
| 181 #endif | 186 #endif |
| OLD | NEW |