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

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

Issue 2700123003: DO NOT COMMIT: Results of running old (current) clang-format on Blink (Closed)
Patch Set: Created 3 years, 10 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-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 4 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights
5 * reserved. 5 * reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
11 * 11 *
12 * This library is distributed in the hope that it will be useful, 12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Library General Public License for more details. 15 * Library General Public License for more details.
16 * 16 *
17 * You should have received a copy of the GNU Library General Public License 17 * You should have received a copy of the GNU Library General Public License
18 * along with this library; see the file COPYING.LIB. If not, write to 18 * along with this library; see the file COPYING.LIB. If not, write to
19 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 19 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 * Boston, MA 02110-1301, USA. 20 * Boston, MA 02110-1301, USA.
21 */ 21 */
22 22
23 #ifndef CSSSelector_h 23 #ifndef CSSSelector_h
24 #define CSSSelector_h 24 #define CSSSelector_h
25 25
26 #include <memory>
26 #include "core/CoreExport.h" 27 #include "core/CoreExport.h"
27 #include "core/dom/QualifiedName.h" 28 #include "core/dom/QualifiedName.h"
28 #include "core/style/ComputedStyleConstants.h" 29 #include "core/style/ComputedStyleConstants.h"
29 #include "wtf/RefCounted.h" 30 #include "wtf/RefCounted.h"
30 #include <memory>
31 31
32 namespace blink { 32 namespace blink {
33 class CSSSelectorList; 33 class CSSSelectorList;
34 34
35 // This class represents a selector for a StyleRule. 35 // This class represents a selector for a StyleRule.
36 36
37 // CSS selector representation is somewhat complicated and subtle. A 37 // CSS selector representation is somewhat complicated and subtle. A
38 // representative list of selectors is in CSSSelectorTest; run it in a debug 38 // representative list of selectors is in CSSSelectorTest; run it in a debug
39 // build to see useful debugging output. 39 // build to see useful debugging output.
40 // 40 //
(...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after
535 } 535 }
536 536
537 inline bool CSSSelector::isIdClassOrAttributeSelector() const { 537 inline bool CSSSelector::isIdClassOrAttributeSelector() const {
538 return isAttributeSelector() || match() == CSSSelector::Id || 538 return isAttributeSelector() || match() == CSSSelector::Id ||
539 match() == CSSSelector::Class; 539 match() == CSSSelector::Class;
540 } 540 }
541 541
542 } // namespace blink 542 } // namespace blink
543 543
544 #endif // CSSSelector_h 544 #endif // CSSSelector_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSPathValue.cpp ('k') | third_party/WebKit/Source/core/css/CSSSelector.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698