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

Unified Diff: Source/core/dom/NamedFlow.h

Issue 38943008: Explore the possibility of implementing the CSS Region interface. Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 2 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: Source/core/dom/NamedFlow.h
diff --git a/Source/core/dom/NamedFlow.h b/Source/core/dom/NamedFlow.h
index 75f2bd5765ac6fa530ed3699271b2fea1803cff8..016a6b2b44f9685bb680539bccffe89916392199 100644
--- a/Source/core/dom/NamedFlow.h
+++ b/Source/core/dom/NamedFlow.h
@@ -38,6 +38,7 @@
namespace WebCore {
+class CSSRegion;
class Document;
class NamedFlowCollection;
class Node;
@@ -55,8 +56,8 @@ public:
const AtomicString& name() const;
bool overset() const;
int firstEmptyRegionIndex() const;
- PassRefPtr<NodeList> getRegionsByContent(Node*);
- PassRefPtr<NodeList> getRegions();
+ Vector<RefPtr<CSSRegion>> getRegionsByContent(Node*);
+ Vector<RefPtr<CSSRegion>> getRegions();
abarth-chromium 2013/10/25 16:56:20 We still support C++03
PassRefPtr<NodeList> getContent();
virtual const AtomicString& interfaceName() const OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698