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

Side by Side Diff: Source/core/css/CSSSelector.h

Issue 659833002: Removed unused scrollbar pseudo classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased Created 6 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 unified diff | Download patch
« no previous file with comments | « no previous file | Source/core/css/CSSSelector.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-2003 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999-2003 Lars Knoll (knoll@kde.org)
3 * 1999 Waldo Bastian (bastian@kde.org) 3 * 1999 Waldo Bastian (bastian@kde.org)
4 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights reserved. 4 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 PseudoTarget, 173 PseudoTarget,
174 PseudoBefore, 174 PseudoBefore,
175 PseudoAfter, 175 PseudoAfter,
176 PseudoBackdrop, 176 PseudoBackdrop,
177 PseudoLang, 177 PseudoLang,
178 PseudoNot, 178 PseudoNot,
179 PseudoResizer, 179 PseudoResizer,
180 PseudoRoot, 180 PseudoRoot,
181 PseudoScope, 181 PseudoScope,
182 PseudoScrollbar, 182 PseudoScrollbar,
183 PseudoScrollbarBack,
184 PseudoScrollbarButton, 183 PseudoScrollbarButton,
185 PseudoScrollbarCorner, 184 PseudoScrollbarCorner,
186 PseudoScrollbarForward,
187 PseudoScrollbarThumb, 185 PseudoScrollbarThumb,
188 PseudoScrollbarTrack, 186 PseudoScrollbarTrack,
189 PseudoScrollbarTrackPiece, 187 PseudoScrollbarTrackPiece,
190 PseudoWindowInactive, 188 PseudoWindowInactive,
191 PseudoCornerPresent, 189 PseudoCornerPresent,
192 PseudoDecrement, 190 PseudoDecrement,
193 PseudoIncrement, 191 PseudoIncrement,
194 PseudoHorizontal, 192 PseudoHorizontal,
195 PseudoVertical, 193 PseudoVertical,
196 PseudoStart, 194 PseudoStart,
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 if (m_hasRareData) 536 if (m_hasRareData)
539 return m_data.m_rareData->m_value; 537 return m_data.m_rareData->m_value;
540 // AtomicString is really just a StringImpl* so the cast below is safe. 538 // AtomicString is really just a StringImpl* so the cast below is safe.
541 // FIXME: Perhaps call sites could be changed to accept StringImpl? 539 // FIXME: Perhaps call sites could be changed to accept StringImpl?
542 return *reinterpret_cast<const AtomicString*>(&m_data.m_value); 540 return *reinterpret_cast<const AtomicString*>(&m_data.m_value);
543 } 541 }
544 542
545 } // namespace blink 543 } // namespace blink
546 544
547 #endif // CSSSelector_h 545 #endif // CSSSelector_h
OLDNEW
« no previous file with comments | « no previous file | Source/core/css/CSSSelector.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698