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

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

Issue 10377148: Revert 116712 - Source/WebCore: [chromium] DomStorage events handling needs TLC (2) (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1137/
Patch Set: Created 8 years, 7 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
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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « Source/WebKit/chromium/public/WebStorageNamespace.h ('k') | Source/WebKit/chromium/src/StorageAreaProxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698