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

Side by Side Diff: third_party/WebKit/Source/core/dom/StyleChangeReason.h

Issue 1627713002: Add more missing closing namespace comments. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase, address comment (also filed llvm.org/PR26290) Created 4 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 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef StyleChangeReason_h 5 #ifndef StyleChangeReason_h
6 #define StyleChangeReason_h 6 #define StyleChangeReason_h
7 7
8 #include "core/dom/QualifiedName.h" 8 #include "core/dom/QualifiedName.h"
9 #include "wtf/PassRefPtr.h" 9 #include "wtf/PassRefPtr.h"
10 #include "wtf/text/AtomicString.h" 10 #include "wtf/text/AtomicString.h"
(...skipping 29 matching lines...) Expand all
40 extern const char Shadow[]; 40 extern const char Shadow[];
41 extern const char SiblingSelector[]; 41 extern const char SiblingSelector[];
42 extern const char StyleInvalidator[]; 42 extern const char StyleInvalidator[];
43 extern const char StyleSheetChange[]; 43 extern const char StyleSheetChange[];
44 extern const char Validate[]; 44 extern const char Validate[];
45 extern const char ViewportUnits[]; 45 extern const char ViewportUnits[];
46 extern const char VisitedLink[]; 46 extern const char VisitedLink[];
47 extern const char VisuallyOrdered[]; 47 extern const char VisuallyOrdered[];
48 extern const char WritingModeChange[]; 48 extern const char WritingModeChange[];
49 extern const char Zoom[]; 49 extern const char Zoom[];
50 } 50 } // namespace StyleChangeReason
51 typedef const char StyleChangeReasonString[]; 51 typedef const char StyleChangeReasonString[];
52 52
53 namespace StyleChangeExtraData { 53 namespace StyleChangeExtraData {
54 extern const AtomicString& Active; 54 extern const AtomicString& Active;
55 extern const AtomicString& Disabled; 55 extern const AtomicString& Disabled;
56 extern const AtomicString& Focus; 56 extern const AtomicString& Focus;
57 extern const AtomicString& Hover; 57 extern const AtomicString& Hover;
58 extern const AtomicString& Past; 58 extern const AtomicString& Past;
59 extern const AtomicString& Unresolved; 59 extern const AtomicString& Unresolved;
60 60
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 void operator==(const StyleChangeReasonForTracing&) const { } 98 void operator==(const StyleChangeReasonForTracing&) const { }
99 void operator!=(const StyleChangeReasonForTracing&) const { } 99 void operator!=(const StyleChangeReasonForTracing&) const { }
100 100
101 const char* m_reason; 101 const char* m_reason;
102 AtomicString m_extraData; 102 AtomicString m_extraData;
103 }; 103 };
104 104
105 } // namespace blink 105 } // namespace blink
106 106
107 #endif // StyleChangeReason_h 107 #endif // StyleChangeReason_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698