| OLD | NEW |
| 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 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 removeItem(key, pageUrl, unused); | 78 removeItem(key, pageUrl, unused); |
| 79 } | 79 } |
| 80 | 80 |
| 81 // Clear all key/value pairs. |pageUrl| is the url that should be used if a
storage event fires. | 81 // Clear all key/value pairs. |pageUrl| is the url that should be used if a
storage event fires. |
| 82 virtual void clear(const WebURL& pageUrl) | 82 virtual void clear(const WebURL& pageUrl) |
| 83 { | 83 { |
| 84 bool unused; | 84 bool unused; |
| 85 clear(pageUrl, unused); | 85 clear(pageUrl, unused); |
| 86 } | 86 } |
| 87 | 87 |
| 88 // Returns amount of bytes occupied by the storage cache in physical memory. | |
| 89 virtual size_t memoryBytesUsedByCache() const { return 0; } | |
| 90 | |
| 91 // DEPRECATED - being replaced by the async variants above which do not retu
rn oldValues or block until completion. | 88 // DEPRECATED - being replaced by the async variants above which do not retu
rn oldValues or block until completion. |
| 92 virtual void setItem(const WebString& key, const WebString& newValue, const
WebURL&, Result&, WebString& oldValue) { } | 89 virtual void setItem(const WebString& key, const WebString& newValue, const
WebURL&, Result&, WebString& oldValue) { } |
| 93 virtual void removeItem(const WebString& key, const WebURL& pageUrl, WebStri
ng& oldValue) { } | 90 virtual void removeItem(const WebString& key, const WebURL& pageUrl, WebStri
ng& oldValue) { } |
| 94 virtual void clear(const WebURL& pageUrl, bool& somethingCleared) { } | 91 virtual void clear(const WebURL& pageUrl, bool& somethingCleared) { } |
| 95 }; | 92 }; |
| 96 | 93 |
| 97 } // namespace blink | 94 } // namespace blink |
| 98 | 95 |
| 99 #endif // WebStorageArea_h | 96 #endif // WebStorageArea_h |
| OLD | NEW |