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

Side by Side Diff: third_party/WebKit/Source/core/style/AppliedTextDecoration.h

Issue 2813863003: Rewrite references to "wtf/" to "platform/wtf/" in core/css and core/style. (Closed)
Patch Set: Rebase. Created 3 years, 8 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 AppliedTextDecoration_h 5 #ifndef AppliedTextDecoration_h
6 #define AppliedTextDecoration_h 6 #define AppliedTextDecoration_h
7 7
8 #include "core/style/ComputedStyleConstants.h" 8 #include "core/style/ComputedStyleConstants.h"
9 #include "platform/graphics/Color.h" 9 #include "platform/graphics/Color.h"
10 #include "wtf/Allocator.h" 10 #include "platform/wtf/Allocator.h"
11 11
12 namespace blink { 12 namespace blink {
13 13
14 class AppliedTextDecoration { 14 class AppliedTextDecoration {
15 DISALLOW_NEW_EXCEPT_PLACEMENT_NEW(); 15 DISALLOW_NEW_EXCEPT_PLACEMENT_NEW();
16 16
17 public: 17 public:
18 AppliedTextDecoration(TextDecoration, TextDecorationStyle, Color); 18 AppliedTextDecoration(TextDecoration, TextDecorationStyle, Color);
19 19
20 TextDecoration Lines() const { return static_cast<TextDecoration>(lines_); } 20 TextDecoration Lines() const { return static_cast<TextDecoration>(lines_); }
(...skipping 10 matching lines...) Expand all
31 31
32 private: 32 private:
33 unsigned lines_ : kTextDecorationBits; 33 unsigned lines_ : kTextDecorationBits;
34 unsigned style_ : 3; // TextDecorationStyle 34 unsigned style_ : 3; // TextDecorationStyle
35 Color color_; 35 Color color_;
36 }; 36 };
37 37
38 } // namespace blink 38 } // namespace blink
39 39
40 #endif // AppliedTextDecoration_h 40 #endif // AppliedTextDecoration_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/resolver/TransformBuilder.h ('k') | third_party/WebKit/Source/core/style/BasicShapes.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698