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

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

Issue 2463703003: blink: Cleanup core class forward declarations (Closed)
Patch Set: Remove redundant empty lines Created 4 years, 1 month 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 * (C) 1999-2003 Lars Knoll (knoll@kde.org) 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2004, 2005, 2006, 2008, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2008, 2012 Apple Inc. All rights reserved.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 16 matching lines...) Expand all
27 #include "wtf/Forward.h" 27 #include "wtf/Forward.h"
28 #include "wtf/Noncopyable.h" 28 #include "wtf/Noncopyable.h"
29 #include "wtf/text/WTFString.h" 29 #include "wtf/text/WTFString.h"
30 30
31 namespace blink { 31 namespace blink {
32 32
33 class CSSRule; 33 class CSSRule;
34 class CSSStyleSheet; 34 class CSSStyleSheet;
35 class CSSValue; 35 class CSSValue;
36 class ExceptionState; 36 class ExceptionState;
37 class MutableStylePropertySet;
38 37
39 class CORE_EXPORT CSSStyleDeclaration 38 class CORE_EXPORT CSSStyleDeclaration
40 : public GarbageCollectedFinalized<CSSStyleDeclaration>, 39 : public GarbageCollectedFinalized<CSSStyleDeclaration>,
41 public ScriptWrappable { 40 public ScriptWrappable {
42 DEFINE_WRAPPERTYPEINFO(); 41 DEFINE_WRAPPERTYPEINFO();
43 WTF_MAKE_NONCOPYABLE(CSSStyleDeclaration); 42 WTF_MAKE_NONCOPYABLE(CSSStyleDeclaration);
44 43
45 public: 44 public:
46 virtual ~CSSStyleDeclaration() {} 45 virtual ~CSSStyleDeclaration() {}
47 46
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 87
89 DECLARE_VIRTUAL_TRACE_WRAPPERS(); 88 DECLARE_VIRTUAL_TRACE_WRAPPERS();
90 89
91 protected: 90 protected:
92 CSSStyleDeclaration() {} 91 CSSStyleDeclaration() {}
93 }; 92 };
94 93
95 } // namespace blink 94 } // namespace blink
96 95
97 #endif // CSSStyleDeclaration_h 96 #endif // CSSStyleDeclaration_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSSegmentedFontFace.h ('k') | third_party/WebKit/Source/core/css/FontFaceSet.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698