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/platform/graphics/ImageBuffer.h

Issue 2940933003: DO NOT SUBMIT results of new clang-format (Closed)
Patch Set: Created 3 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) 2006 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2006 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2007, 2008, 2009 Apple Inc. All rights reserved. 3 * Copyright (C) 2007, 2008, 2009 Apple Inc. All rights reserved.
4 * Copyright (C) 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserved. 4 * Copyright (C) 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 #include "platform/wtf/PassRefPtr.h" 43 #include "platform/wtf/PassRefPtr.h"
44 #include "platform/wtf/Vector.h" 44 #include "platform/wtf/Vector.h"
45 #include "platform/wtf/text/WTFString.h" 45 #include "platform/wtf/text/WTFString.h"
46 #include "platform/wtf/typed_arrays/Uint8ClampedArray.h" 46 #include "platform/wtf/typed_arrays/Uint8ClampedArray.h"
47 #include "third_party/skia/include/core/SkRefCnt.h" 47 #include "third_party/skia/include/core/SkRefCnt.h"
48 48
49 namespace gpu { 49 namespace gpu {
50 namespace gles2 { 50 namespace gles2 {
51 class GLES2Interface; 51 class GLES2Interface;
52 } 52 }
53 } 53 } // namespace gpu
54 54
55 namespace WTF { 55 namespace WTF {
56 56
57 class ArrayBufferContents; 57 class ArrayBufferContents;
58 58
59 } // namespace WTF 59 } // namespace WTF
60 60
61 namespace blink { 61 namespace blink {
62 62
63 class DrawingBuffer; 63 class DrawingBuffer;
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 int Height() const { return size_.Height(); } 215 int Height() const { return size_.Height(); }
216 int Width() const { return size_.Width(); } 216 int Width() const { return size_.Width(); }
217 217
218 const unsigned char* data_; 218 const unsigned char* data_;
219 const IntSize size_; 219 const IntSize size_;
220 }; 220 };
221 221
222 } // namespace blink 222 } // namespace blink
223 223
224 #endif // ImageBuffer_h 224 #endif // ImageBuffer_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698