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

Unified Diff: Source/modules/quota/DOMWindowQuota.cpp

Issue 14146021: Move deprecation messages to UseCounter::measureDeprecatedFeature. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase. Created 7 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/page/UseCounter.cpp ('k') | Source/modules/quota/DOMWindowQuota.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/quota/DOMWindowQuota.cpp
diff --git a/Source/modules/quota/DOMWindowQuota.cpp b/Source/modules/quota/DOMWindowQuota.cpp
index bbea407f17aa3199be973f3d655bd52db9cf3e2d..c71a279e87ce6d855734c070666c114356c39746 100644
--- a/Source/modules/quota/DOMWindowQuota.cpp
+++ b/Source/modules/quota/DOMWindowQuota.cpp
@@ -73,10 +73,8 @@ StorageInfo* DOMWindowQuota::webkitStorageInfo(DOMWindow* window)
StorageInfo* DOMWindowQuota::webkitStorageInfo() const
{
- if (!m_storageInfo && frame()) {
- PageConsole::reportDeprecation(frame()->document(), PageConsole::PrefixedStorageInfo);
+ if (!m_storageInfo && frame())
m_storageInfo = StorageInfo::create();
- }
return m_storageInfo.get();
}
« no previous file with comments | « Source/core/page/UseCounter.cpp ('k') | Source/modules/quota/DOMWindowQuota.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698