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

Unified Diff: sky/engine/core/dom/custom/CustomElementMicrotaskQueueBase.h

Issue 950523002: Delete sky/engine/core/dom/custom (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
Index: sky/engine/core/dom/custom/CustomElementMicrotaskQueueBase.h
diff --git a/sky/engine/core/dom/custom/CustomElementMicrotaskQueueBase.h b/sky/engine/core/dom/custom/CustomElementMicrotaskQueueBase.h
deleted file mode 100644
index aebe43b5cb02192b62bc98e1e2a7752e5537936c..0000000000000000000000000000000000000000
--- a/sky/engine/core/dom/custom/CustomElementMicrotaskQueueBase.h
+++ /dev/null
@@ -1,37 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef SKY_ENGINE_CORE_DOM_CUSTOM_CUSTOMELEMENTMICROTASKQUEUEBASE_H_
-#define SKY_ENGINE_CORE_DOM_CUSTOM_CUSTOMELEMENTMICROTASKQUEUEBASE_H_
-
-#include "sky/engine/core/dom/custom/CustomElementMicrotaskStep.h"
-#include "sky/engine/platform/heap/Handle.h"
-#include "sky/engine/wtf/OwnPtr.h"
-#include "sky/engine/wtf/PassOwnPtr.h"
-#include "sky/engine/wtf/PassRefPtr.h"
-#include "sky/engine/wtf/RefCounted.h"
-#include "sky/engine/wtf/RefPtr.h"
-#include "sky/engine/wtf/Vector.h"
-
-namespace blink {
-
-class CustomElementMicrotaskQueueBase : public RefCounted<CustomElementMicrotaskQueueBase> {
- WTF_MAKE_NONCOPYABLE(CustomElementMicrotaskQueueBase);
-public:
- virtual ~CustomElementMicrotaskQueueBase() { }
-
- bool isEmpty() const { return m_queue.isEmpty(); }
- void dispatch();
-
-protected:
- CustomElementMicrotaskQueueBase() : m_inDispatch(false) { }
- virtual void doDispatch() = 0;
-
- Vector<OwnPtr<CustomElementMicrotaskStep> > m_queue;
- bool m_inDispatch;
-};
-
-}
-
-#endif // SKY_ENGINE_CORE_DOM_CUSTOM_CUSTOMELEMENTMICROTASKQUEUEBASE_H_

Powered by Google App Engine
This is Rietveld 408576698