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

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

Issue 138443013: Remove iframe@seamless (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Include remove tests Created 6 years, 11 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 | Annotate | Revision Log
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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 PseudoFullScreen, 154 PseudoFullScreen,
155 PseudoFullScreenDocument, 155 PseudoFullScreenDocument,
156 PseudoFullScreenAncestor, 156 PseudoFullScreenAncestor,
157 PseudoInRange, 157 PseudoInRange,
158 PseudoOutOfRange, 158 PseudoOutOfRange,
159 PseudoUserAgentCustomElement, 159 PseudoUserAgentCustomElement,
160 PseudoWebKitCustomElement, 160 PseudoWebKitCustomElement,
161 PseudoCue, 161 PseudoCue,
162 PseudoFutureCue, 162 PseudoFutureCue,
163 PseudoPastCue, 163 PseudoPastCue,
164 PseudoSeamlessDocument,
165 PseudoDistributed, 164 PseudoDistributed,
166 PseudoUnresolved, 165 PseudoUnresolved,
167 PseudoContent, 166 PseudoContent,
168 PseudoHost, 167 PseudoHost,
169 PseudoAncestor 168 PseudoAncestor
170 }; 169 };
171 170
172 enum MarginBoxType { 171 enum MarginBoxType {
173 TopLeftCornerMarginBox, 172 TopLeftCornerMarginBox,
174 TopLeftMarginBox, 173 TopLeftMarginBox,
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
455 if (m_hasRareData) 454 if (m_hasRareData)
456 return m_data.m_rareData->m_value; 455 return m_data.m_rareData->m_value;
457 // AtomicString is really just a StringImpl* so the cast below is safe. 456 // AtomicString is really just a StringImpl* so the cast below is safe.
458 // FIXME: Perhaps call sites could be changed to accept StringImpl? 457 // FIXME: Perhaps call sites could be changed to accept StringImpl?
459 return *reinterpret_cast<const AtomicString*>(&m_data.m_value); 458 return *reinterpret_cast<const AtomicString*>(&m_data.m_value);
460 } 459 }
461 460
462 } // namespace WebCore 461 } // namespace WebCore
463 462
464 #endif // CSSSelector_h 463 #endif // CSSSelector_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698