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

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

Issue 2185533004: ResizeObserver pt4: IDL methods (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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.h
diff --git a/third_party/WebKit/Source/core/observer/ResizeObserverEntry.h b/third_party/WebKit/Source/core/observer/ResizeObserverEntry.h
index ff42f7723742d0b1175ec160119ce912a3c9bee3..3eb3f65e4a9e6588c60ed5ed049694d475adea8f 100644
--- a/third_party/WebKit/Source/core/observer/ResizeObserverEntry.h
+++ b/third_party/WebKit/Source/core/observer/ResizeObserverEntry.h
@@ -11,7 +11,6 @@
namespace blink {
class Element;
-class DOMRectReadOnly;
class ClientRect;
class LayoutSize;
@@ -24,6 +23,7 @@ public:
Element* target() const { return m_target; }
// FIXME(atotic): should return DOMRectReadOnly once https://crbug.com/388780 lands
ClientRect* contentRect() const { return m_contentRect; }
+ LayoutSize contentSize() const;
DECLARE_VIRTUAL_TRACE();

Powered by Google App Engine
This is Rietveld 408576698