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

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

Issue 2008263002: Remove unnecessary includes from ComputedStyle.h and from its includes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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) 2000 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) 3 * (C) 2000 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com)
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 13 matching lines...) Expand all
24 24
25 #ifndef StyleInheritedData_h 25 #ifndef StyleInheritedData_h
26 #define StyleInheritedData_h 26 #define StyleInheritedData_h
27 27
28 #include "core/CoreExport.h" 28 #include "core/CoreExport.h"
29 #include "platform/Length.h" 29 #include "platform/Length.h"
30 #include "platform/fonts/Font.h" 30 #include "platform/fonts/Font.h"
31 #include "platform/graphics/Color.h" 31 #include "platform/graphics/Color.h"
32 #include "wtf/PassRefPtr.h" 32 #include "wtf/PassRefPtr.h"
33 #include "wtf/RefCounted.h" 33 #include "wtf/RefCounted.h"
34 #include "wtf/RefPtr.h"
35 34
36 namespace blink { 35 namespace blink {
37 36
38 class CORE_EXPORT StyleInheritedData : public RefCounted<StyleInheritedData> { 37 class CORE_EXPORT StyleInheritedData : public RefCounted<StyleInheritedData> {
39 public: 38 public:
40 static PassRefPtr<StyleInheritedData> create() { return adoptRef(new StyleIn heritedData); } 39 static PassRefPtr<StyleInheritedData> create() { return adoptRef(new StyleIn heritedData); }
41 PassRefPtr<StyleInheritedData> copy() const { return adoptRef(new StyleInher itedData(*this)); } 40 PassRefPtr<StyleInheritedData> copy() const { return adoptRef(new StyleInher itedData(*this)); }
42 ~StyleInheritedData(); 41 ~StyleInheritedData();
43 42
44 bool operator==(const StyleInheritedData&) const; 43 bool operator==(const StyleInheritedData&) const;
(...skipping 15 matching lines...) Expand all
60 float textAutosizingMultiplier; 59 float textAutosizingMultiplier;
61 60
62 private: 61 private:
63 StyleInheritedData(); 62 StyleInheritedData();
64 StyleInheritedData(const StyleInheritedData&); 63 StyleInheritedData(const StyleInheritedData&);
65 }; 64 };
66 65
67 } // namespace blink 66 } // namespace blink
68 67
69 #endif // StyleInheritedData_h 68 #endif // StyleInheritedData_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyle.cpp ('k') | third_party/WebKit/Source/core/style/StyleMultiColData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698