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

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: New version Created 7 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 unified diff | Download patch
« no previous file with comments | « Source/core/dom/Document.idl ('k') | Source/core/dom/Element.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 564 matching lines...) Expand 10 before | Expand all | Expand 10 after
575 bool isInTopLayer() const; 575 bool isInTopLayer() const;
576 void setIsInTopLayer(bool); 576 void setIsInTopLayer(bool);
577 577
578 void webkitRequestPointerLock(); 578 void webkitRequestPointerLock();
579 579
580 bool isSpellCheckingEnabled() const; 580 bool isSpellCheckingEnabled() const;
581 581
582 PassRefPtr<RenderStyle> styleForRenderer(); 582 PassRefPtr<RenderStyle> styleForRenderer();
583 583
584 RenderRegion* renderRegion() const; 584 RenderRegion* renderRegion() const;
585 #if ENABLE(CSS_REGIONS)
586 const AtomicString& webkitRegionOverset() const; 585 const AtomicString& webkitRegionOverset() const;
587 Vector<RefPtr<Range> > webkitGetRegionFlowRanges() const; 586 Vector<RefPtr<Range> > webkitGetRegionFlowRanges() const;
588 #endif
589 587
590 bool hasID() const; 588 bool hasID() const;
591 bool hasClass() const; 589 bool hasClass() const;
592 const SpaceSplitString& classNames() const; 590 const SpaceSplitString& classNames() const;
593 591
594 IntSize savedLayerScrollOffset() const; 592 IntSize savedLayerScrollOffset() const;
595 void setSavedLayerScrollOffset(const IntSize&); 593 void setSavedLayerScrollOffset(const IntSize&);
596 594
597 virtual void reportMemoryUsage(MemoryObjectInfo*) const OVERRIDE; 595 virtual void reportMemoryUsage(MemoryObjectInfo*) const OVERRIDE;
598 596
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after
998 996
999 inline const Attribute* ElementData::attributeItem(unsigned index) const 997 inline const Attribute* ElementData::attributeItem(unsigned index) const
1000 { 998 {
1001 RELEASE_ASSERT(index < length()); 999 RELEASE_ASSERT(index < length());
1002 return attributeBase() + index; 1000 return attributeBase() + index;
1003 } 1001 }
1004 1002
1005 } // namespace 1003 } // namespace
1006 1004
1007 #endif 1005 #endif
OLDNEW
« no previous file with comments | « Source/core/dom/Document.idl ('k') | Source/core/dom/Element.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698