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

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

Issue 2700123003: DO NOT COMMIT: Results of running old (current) clang-format on Blink (Closed)
Patch Set: Created 3 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 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 CSSStyleImageValue_h 5 #ifndef CSSStyleImageValue_h
6 #define CSSStyleImageValue_h 6 #define CSSStyleImageValue_h
7 7
8 #include "core/CoreExport.h" 8 #include "core/CoreExport.h"
9 #include "core/css/CSSImageValue.h" 9 #include "core/css/CSSImageValue.h"
10 #include "core/css/CSSImageValue.h"
11 #include "core/css/cssom/CSSResourceValue.h" 10 #include "core/css/cssom/CSSResourceValue.h"
12 #include "core/css/cssom/CSSStyleValue.h" 11 #include "core/css/cssom/CSSStyleValue.h"
13 #include "core/html/canvas/CanvasImageSource.h" 12 #include "core/html/canvas/CanvasImageSource.h"
14 #include "core/imagebitmap/ImageBitmapSource.h" 13 #include "core/imagebitmap/ImageBitmapSource.h"
15 #include "core/loader/resource/ImageResourceContent.h" 14 #include "core/loader/resource/ImageResourceContent.h"
16 #include "core/style/StyleImage.h" 15 #include "core/style/StyleImage.h"
17 16
18 namespace blink { 17 namespace blink {
19 18
20 class CORE_EXPORT CSSStyleImageValue : public CSSResourceValue, 19 class CORE_EXPORT CSSStyleImageValue : public CSSResourceValue,
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 71
73 private: 72 private:
74 PassRefPtr<Image> image() const; 73 PassRefPtr<Image> image() const;
75 74
76 Member<const CSSImageValue> m_imageValue; 75 Member<const CSSImageValue> m_imageValue;
77 }; 76 };
78 77
79 } // namespace blink 78 } // namespace blink
80 79
81 #endif // CSSResourceValue_h 80 #endif // CSSResourceValue_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698