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

Unified Diff: Source/core/storage/StorageArea.h

Issue 212183004: Remove unneeded mutable keyword in some member variables (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/core/svg/animation/SVGSMILElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/storage/StorageArea.h
diff --git a/Source/core/storage/StorageArea.h b/Source/core/storage/StorageArea.h
index 511a6e43ec9da3f1793dcef49aa5ab59b8f772a9..c00ff73435ca4a54db11294bc8a2e76830c79082 100644
--- a/Source/core/storage/StorageArea.h
+++ b/Source/core/storage/StorageArea.h
@@ -80,8 +80,8 @@ private:
OwnPtr<blink::WebStorageArea> m_storageArea;
StorageType m_storageType;
- mutable bool m_canAccessStorageCachedResult;
- mutable LocalFrame* m_canAccessStorageCachedFrame;
+ bool m_canAccessStorageCachedResult;
+ LocalFrame* m_canAccessStorageCachedFrame;
};
} // namespace WebCore
« no previous file with comments | « no previous file | Source/core/svg/animation/SVGSMILElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698