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

Side by Side Diff: content/renderer/dom_storage/webstoragearea_impl.cc

Issue 10799008: Web Inspector: count DOM storage cache memory for native snapshot (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/renderer/dom_storage/webstoragearea_impl.h" 5 #include "content/renderer/dom_storage/webstoragearea_impl.h"
6 6
7 #include "base/lazy_instance.h" 7 #include "base/lazy_instance.h"
8 #include "base/metrics/histogram.h" 8 #include "base/metrics/histogram.h"
9 #include "base/time.h" 9 #include "base/time.h"
10 #include "base/utf_string_conversions.h" 10 #include "base/utf_string_conversions.h"
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 } 69 }
70 70
71 void WebStorageAreaImpl::removeItem( 71 void WebStorageAreaImpl::removeItem(
72 const WebString& key, const WebURL& page_url) { 72 const WebString& key, const WebURL& page_url) {
73 cached_area_->RemoveItem(connection_id_, key, page_url); 73 cached_area_->RemoveItem(connection_id_, key, page_url);
74 } 74 }
75 75
76 void WebStorageAreaImpl::clear(const WebURL& page_url) { 76 void WebStorageAreaImpl::clear(const WebURL& page_url) {
77 cached_area_->Clear(connection_id_, page_url); 77 cached_area_->Clear(connection_id_, page_url);
78 } 78 }
79
80 size_t WebStorageAreaImpl::memoryBytesUsedByCache() const {
81 return cached_area_->MemoryBytesUsedByCache();
82 }
OLDNEW
« no previous file with comments | « content/renderer/dom_storage/webstoragearea_impl.h ('k') | webkit/dom_storage/dom_storage_cached_area.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698