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

Side by Side Diff: third_party/WebKit/public/platform/WebStorageArea.h

Issue 1729683007: Remove unused blink::WebStorageArea::memoryBytesUsedByCache(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 4 years, 9 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 | « third_party/WebKit/Source/modules/storage/StorageArea.cpp ('k') | no next file » | 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) 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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/storage/StorageArea.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698