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

Side by Side Diff: Source/core/dom/Element.h

Issue 14178009: Remove CSS_REGIONS compile flag from Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rework patch after https://codereview.chromium.org/14324009 Created 7 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Peter Kelly (pmk@post.com) 4 * (C) 2001 Peter Kelly (pmk@post.com)
5 * (C) 2001 Dirk Mueller (mueller@kde.org) 5 * (C) 2001 Dirk Mueller (mueller@kde.org)
6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2013 Appl e Inc. All rights reserved. 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2013 Appl e Inc. All rights reserved.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after
584 bool isInTopLayer() const; 584 bool isInTopLayer() const;
585 void setIsInTopLayer(bool); 585 void setIsInTopLayer(bool);
586 586
587 void webkitRequestPointerLock(); 587 void webkitRequestPointerLock();
588 588
589 virtual bool isSpellCheckingEnabled() const; 589 virtual bool isSpellCheckingEnabled() const;
590 590
591 PassRefPtr<RenderStyle> styleForRenderer(); 591 PassRefPtr<RenderStyle> styleForRenderer();
592 592
593 RenderRegion* renderRegion() const; 593 RenderRegion* renderRegion() const;
594 #if ENABLE(CSS_REGIONS)
595 const AtomicString& webkitRegionOverset() const; 594 const AtomicString& webkitRegionOverset() const;
596 Vector<RefPtr<Range> > webkitGetRegionFlowRanges() const; 595 Vector<RefPtr<Range> > webkitGetRegionFlowRanges() const;
597 #endif
598 596
599 bool hasID() const; 597 bool hasID() const;
600 bool hasClass() const; 598 bool hasClass() const;
601 const SpaceSplitString& classNames() const; 599 const SpaceSplitString& classNames() const;
602 600
603 IntSize savedLayerScrollOffset() const; 601 IntSize savedLayerScrollOffset() const;
604 void setSavedLayerScrollOffset(const IntSize&); 602 void setSavedLayerScrollOffset(const IntSize&);
605 603
606 virtual void reportMemoryUsage(MemoryObjectInfo*) const OVERRIDE; 604 virtual void reportMemoryUsage(MemoryObjectInfo*) const OVERRIDE;
607 605
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after
1007 1005
1008 inline const Attribute* ElementData::attributeItem(unsigned index) const 1006 inline const Attribute* ElementData::attributeItem(unsigned index) const
1009 { 1007 {
1010 RELEASE_ASSERT(index < length()); 1008 RELEASE_ASSERT(index < length());
1011 return attributeBase() + index; 1009 return attributeBase() + index;
1012 } 1010 }
1013 1011
1014 } // namespace 1012 } // namespace
1015 1013
1016 #endif 1014 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698