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

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

Issue 334283004: Rename DOMWindow to LocalDOMWindow (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 6 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/modules/netinfo/NavigatorNetworkInformation.cpp ('k') | Source/modules/quota/DOMWindowQuota.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/quota/DOMWindowQuota.h
diff --git a/Source/modules/quota/DOMWindowQuota.h b/Source/modules/quota/DOMWindowQuota.h
index 888823e27866142e827157f9f596ebc630234eeb..b8017c502cabb88afa96d5216ebe719e73abda9b 100644
--- a/Source/modules/quota/DOMWindowQuota.h
+++ b/Source/modules/quota/DOMWindowQuota.h
@@ -38,20 +38,20 @@
namespace WebCore {
class DeprecatedStorageInfo;
-class DOMWindow;
+class LocalDOMWindow;
-class DOMWindowQuota FINAL : public NoBaseWillBeGarbageCollectedFinalized<DOMWindowQuota>, public WillBeHeapSupplement<DOMWindow>, public DOMWindowProperty {
+class DOMWindowQuota FINAL : public NoBaseWillBeGarbageCollectedFinalized<DOMWindowQuota>, public WillBeHeapSupplement<LocalDOMWindow>, public DOMWindowProperty {
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DOMWindowQuota);
public:
virtual ~DOMWindowQuota();
- static DOMWindowQuota& from(DOMWindow&);
- static DeprecatedStorageInfo* webkitStorageInfo(DOMWindow&);
+ static DOMWindowQuota& from(LocalDOMWindow&);
+ static DeprecatedStorageInfo* webkitStorageInfo(LocalDOMWindow&);
DeprecatedStorageInfo* webkitStorageInfo() const;
void trace(Visitor*);
private:
- explicit DOMWindowQuota(DOMWindow&);
+ explicit DOMWindowQuota(LocalDOMWindow&);
static const char* supplementName();
mutable PersistentWillBeMember<DeprecatedStorageInfo> m_storageInfo;
« no previous file with comments | « Source/modules/netinfo/NavigatorNetworkInformation.cpp ('k') | Source/modules/quota/DOMWindowQuota.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698