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

Unified Diff: third_party/WebKit/Source/core/observer/ResizeObserverEntry.cpp

Issue 2005593002: Initial ResizeObserver implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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/observer/ResizeObserverEntry.cpp
diff --git a/third_party/WebKit/Source/platform/text/linux/HyphenationLinux.cpp b/third_party/WebKit/Source/core/observer/ResizeObserverEntry.cpp
similarity index 55%
copy from third_party/WebKit/Source/platform/text/linux/HyphenationLinux.cpp
copy to third_party/WebKit/Source/core/observer/ResizeObserverEntry.cpp
index ca2b39fe6cce5b64bfbea81e4f691d92e2a85acc..ad2fe7a3d86e8115bb618eeb8b4a0ca42737b1d8 100644
--- a/third_party/WebKit/Source/platform/text/linux/HyphenationLinux.cpp
+++ b/third_party/WebKit/Source/core/observer/ResizeObserverEntry.cpp
@@ -2,13 +2,18 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "platform/text/Hyphenation.h"
+#include "core/observer/ResizeObserverEntry.h"
+
+#include "core/dom/Element.h"
namespace blink {
-PassRefPtr<Hyphenation> Hyphenation::platformGetHyphenation(const AtomicString&)
+class ResizeObservation;
+
+
+DEFINE_TRACE(ResizeObserverEntry)
{
- return nullptr;
+ visitor->trace(m_target);
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698