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

Unified Diff: third_party/WebKit/Source/core/dom/custom/V0CustomElementCallbackQueue.cpp

Issue 1914923002: Rename all existing custom element classes as V0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CustomElementV0 -> V0CustomElement Created 4 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
Index: third_party/WebKit/Source/core/dom/custom/V0CustomElementCallbackQueue.cpp
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementCallbackQueue.cpp b/third_party/WebKit/Source/core/dom/custom/V0CustomElementCallbackQueue.cpp
similarity index 87%
rename from third_party/WebKit/Source/core/dom/custom/CustomElementCallbackQueue.cpp
rename to third_party/WebKit/Source/core/dom/custom/V0CustomElementCallbackQueue.cpp
index e203e69089a96c8e4d407b37fc37289a8717dc5d..5a35b9df0626849e36f58fefd5735f20eb8f0feb 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementCallbackQueue.cpp
+++ b/third_party/WebKit/Source/core/dom/custom/V0CustomElementCallbackQueue.cpp
@@ -28,18 +28,18 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include "core/dom/custom/CustomElementCallbackQueue.h"
+#include "core/dom/custom/V0CustomElementCallbackQueue.h"
#include "core/dom/shadow/ShadowRoot.h"
namespace blink {
-CustomElementCallbackQueue* CustomElementCallbackQueue::create(Element* element)
+V0CustomElementCallbackQueue* V0CustomElementCallbackQueue::create(Element* element)
{
- return new CustomElementCallbackQueue(element);
+ return new V0CustomElementCallbackQueue(element);
}
-CustomElementCallbackQueue::CustomElementCallbackQueue(Element* element)
+V0CustomElementCallbackQueue::V0CustomElementCallbackQueue(Element* element)
: m_element(element)
, m_owner(-1)
, m_index(0)
@@ -47,7 +47,7 @@ CustomElementCallbackQueue::CustomElementCallbackQueue(Element* element)
{
}
-bool CustomElementCallbackQueue::processInElementQueue(ElementQueueId caller)
+bool V0CustomElementCallbackQueue::processInElementQueue(ElementQueueId caller)
{
DCHECK(!m_inCreatedCallback);
bool didWork = false;
@@ -78,7 +78,7 @@ bool CustomElementCallbackQueue::processInElementQueue(ElementQueueId caller)
return didWork;
}
-DEFINE_TRACE(CustomElementCallbackQueue)
+DEFINE_TRACE(V0CustomElementCallbackQueue)
{
visitor->trace(m_element);
visitor->trace(m_queue);

Powered by Google App Engine
This is Rietveld 408576698