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

Side by Side Diff: third_party/WebKit/Source/platform/graphics/ImageBufferSurface.h

Issue 2466383004: blink: Cleanup class forward declarations (Closed)
Patch Set: 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 * Copyright (c) 2013, Google Inc. All rights reserved. 2 * Copyright (c) 2013, Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 23 matching lines...) Expand all
34 #include "platform/PlatformExport.h" 34 #include "platform/PlatformExport.h"
35 #include "platform/geometry/IntSize.h" 35 #include "platform/geometry/IntSize.h"
36 #include "platform/graphics/GraphicsTypes.h" 36 #include "platform/graphics/GraphicsTypes.h"
37 #include "third_party/khronos/GLES2/gl2.h" 37 #include "third_party/khronos/GLES2/gl2.h"
38 #include "third_party/skia/include/core/SkImageInfo.h" 38 #include "third_party/skia/include/core/SkImageInfo.h"
39 #include "third_party/skia/include/core/SkPaint.h" 39 #include "third_party/skia/include/core/SkPaint.h"
40 #include "third_party/skia/include/core/SkRefCnt.h" 40 #include "third_party/skia/include/core/SkRefCnt.h"
41 #include "wtf/Allocator.h" 41 #include "wtf/Allocator.h"
42 #include "wtf/Noncopyable.h" 42 #include "wtf/Noncopyable.h"
43 43
44 class SkBitmap;
45 class SkCanvas; 44 class SkCanvas;
46 class SkColorSpace; 45 class SkColorSpace;
47 class SkImage; 46 class SkImage;
48 struct SkImageInfo; 47 struct SkImageInfo;
49 class SkPicture; 48 class SkPicture;
50 49
51 namespace blink { 50 namespace blink {
52 51
53 class ImageBuffer; 52 class ImageBuffer;
54 class WebLayer; 53 class WebLayer;
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 private: 117 private:
119 OpacityMode m_opacityMode; 118 OpacityMode m_opacityMode;
120 IntSize m_size; 119 IntSize m_size;
121 sk_sp<SkColorSpace> m_colorSpace; 120 sk_sp<SkColorSpace> m_colorSpace;
122 SkColorType m_colorType; 121 SkColorType m_colorType;
123 }; 122 };
124 123
125 } // namespace blink 124 } // namespace blink
126 125
127 #endif 126 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698