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

Side by Side Diff: third_party/WebKit/Source/core/dom/Document.cpp

Issue 1677033002: Pass executionContext to document.createEvent() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r ights reserved.
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved.
9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved.
(...skipping 3947 matching lines...) Expand 10 before | Expand all | Expand 10 after
3958 } 3958 }
3959 return *m_accessEntryFromURL; 3959 return *m_accessEntryFromURL;
3960 } 3960 }
3961 3961
3962 void Document::registerEventFactory(PassOwnPtr<EventFactoryBase> eventFactory) 3962 void Document::registerEventFactory(PassOwnPtr<EventFactoryBase> eventFactory)
3963 { 3963 {
3964 ASSERT(!eventFactories().contains(eventFactory.get())); 3964 ASSERT(!eventFactories().contains(eventFactory.get()));
3965 eventFactories().add(eventFactory); 3965 eventFactories().add(eventFactory);
3966 } 3966 }
3967 3967
3968 PassRefPtrWillBeRawPtr<Event> Document::createEvent(const String& eventType, Exc eptionState& exceptionState) 3968 PassRefPtrWillBeRawPtr<Event> Document::createEvent(ExecutionContext* executionC ontext, const String& eventType, ExceptionState& exceptionState)
3969 { 3969 {
3970 RefPtrWillBeRawPtr<Event> event = nullptr; 3970 RefPtrWillBeRawPtr<Event> event = nullptr;
3971 for (const auto& factory : eventFactories()) { 3971 for (const auto& factory : eventFactories()) {
3972 event = factory->create(eventType); 3972 event = factory->create(executionContext, eventType);
3973 if (event) 3973 if (event)
3974 return event.release(); 3974 return event.release();
3975 } 3975 }
3976 exceptionState.throwDOMException(NotSupportedError, "The provided event type ('" + eventType + "') is invalid."); 3976 exceptionState.throwDOMException(NotSupportedError, "The provided event type ('" + eventType + "') is invalid.");
3977 return nullptr; 3977 return nullptr;
3978 } 3978 }
3979 3979
3980 void Document::addMutationEventListenerTypeIfEnabled(ListenerType listenerType) 3980 void Document::addMutationEventListenerTypeIfEnabled(ListenerType listenerType)
3981 { 3981 {
3982 if (ContextFeatures::mutationEventsEnabled(this)) 3982 if (ContextFeatures::mutationEventsEnabled(this))
(...skipping 1953 matching lines...) Expand 10 before | Expand all | Expand 10 after
5936 #ifndef NDEBUG 5936 #ifndef NDEBUG
5937 using namespace blink; 5937 using namespace blink;
5938 void showLiveDocumentInstances() 5938 void showLiveDocumentInstances()
5939 { 5939 {
5940 Document::WeakDocumentSet& set = Document::liveDocumentSet(); 5940 Document::WeakDocumentSet& set = Document::liveDocumentSet();
5941 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); 5941 fprintf(stderr, "There are %u documents currently alive:\n", set.size());
5942 for (Document* document : set) 5942 for (Document* document : set)
5943 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str ing().utf8().data()); 5943 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str ing().utf8().data());
5944 } 5944 }
5945 #endif 5945 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/Document.h ('k') | third_party/WebKit/Source/core/dom/Document.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698