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

Unified Diff: Source/modules/crypto/DOMWindowCrypto.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/core/xml/XSLTProcessor.cpp ('k') | Source/modules/crypto/DOMWindowCrypto.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/crypto/DOMWindowCrypto.h
diff --git a/Source/modules/crypto/DOMWindowCrypto.h b/Source/modules/crypto/DOMWindowCrypto.h
index bccf4d2713114e5c42b3804f978db624703c66f8..fc155c92d9892fa764fc8cd39630133bf61d034d 100644
--- a/Source/modules/crypto/DOMWindowCrypto.h
+++ b/Source/modules/crypto/DOMWindowCrypto.h
@@ -38,20 +38,20 @@
namespace WebCore {
class Crypto;
-class DOMWindow;
+class LocalDOMWindow;
-class DOMWindowCrypto FINAL : public NoBaseWillBeGarbageCollectedFinalized<DOMWindowCrypto>, public WillBeHeapSupplement<DOMWindow>, public DOMWindowProperty {
+class DOMWindowCrypto FINAL : public NoBaseWillBeGarbageCollectedFinalized<DOMWindowCrypto>, public WillBeHeapSupplement<LocalDOMWindow>, public DOMWindowProperty {
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DOMWindowCrypto);
public:
virtual ~DOMWindowCrypto();
- static DOMWindowCrypto& from(DOMWindow&);
- static Crypto* crypto(DOMWindow&);
+ static DOMWindowCrypto& from(LocalDOMWindow&);
+ static Crypto* crypto(LocalDOMWindow&);
Crypto* crypto() const;
void trace(Visitor*);
private:
- explicit DOMWindowCrypto(DOMWindow&);
+ explicit DOMWindowCrypto(LocalDOMWindow&);
static const char* supplementName();
mutable PersistentWillBeMember<Crypto> m_crypto;
« no previous file with comments | « Source/core/xml/XSLTProcessor.cpp ('k') | Source/modules/crypto/DOMWindowCrypto.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698