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

Side by Side Diff: third_party/WebKit/Source/core/style/StylePath.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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 StylePath_h 5 #ifndef StylePath_h
6 #define StylePath_h 6 #define StylePath_h
7 7
8 #include <memory>
8 #include "platform/heap/Handle.h" 9 #include "platform/heap/Handle.h"
9 #include "wtf/PassRefPtr.h" 10 #include "platform/wtf/PassRefPtr.h"
10 #include "wtf/RefCounted.h" 11 #include "platform/wtf/RefCounted.h"
11 #include "wtf/RefPtr.h" 12 #include "platform/wtf/RefPtr.h"
12 #include <memory>
13 13
14 namespace blink { 14 namespace blink {
15 15
16 class CSSValue; 16 class CSSValue;
17 class Path; 17 class Path;
18 class SVGPathByteStream; 18 class SVGPathByteStream;
19 19
20 class StylePath : public RefCounted<StylePath> { 20 class StylePath : public RefCounted<StylePath> {
21 public: 21 public:
22 static PassRefPtr<StylePath> Create(std::unique_ptr<SVGPathByteStream>); 22 static PassRefPtr<StylePath> Create(std::unique_ptr<SVGPathByteStream>);
(...skipping 15 matching lines...) Expand all
38 explicit StylePath(std::unique_ptr<SVGPathByteStream>); 38 explicit StylePath(std::unique_ptr<SVGPathByteStream>);
39 39
40 std::unique_ptr<SVGPathByteStream> byte_stream_; 40 std::unique_ptr<SVGPathByteStream> byte_stream_;
41 mutable std::unique_ptr<Path> path_; 41 mutable std::unique_ptr<Path> path_;
42 mutable float path_length_; 42 mutable float path_length_;
43 }; 43 };
44 44
45 } // namespace blink 45 } // namespace blink
46 46
47 #endif // StylePath_h 47 #endif // StylePath_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/style/StyleNonInheritedVariables.h ('k') | third_party/WebKit/Source/core/style/StylePath.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698