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

Side by Side Diff: Source/platform/graphics/gpu/DrawingBuffer.h

Issue 531983002: Clean up forward declarations in Source/platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « Source/platform/graphics/filters/Filter.h ('k') | Source/platform/graphics/media/MediaPlayer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2010, Google Inc. All rights reserved. 2 * Copyright (c) 2010, 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 #include "third_party/skia/include/core/SkBitmap.h" 43 #include "third_party/skia/include/core/SkBitmap.h"
44 #include "wtf/Deque.h" 44 #include "wtf/Deque.h"
45 #include "wtf/Noncopyable.h" 45 #include "wtf/Noncopyable.h"
46 #include "wtf/OwnPtr.h" 46 #include "wtf/OwnPtr.h"
47 #include "wtf/PassOwnPtr.h" 47 #include "wtf/PassOwnPtr.h"
48 48
49 namespace blink { 49 namespace blink {
50 50
51 class Extensions3DUtil; 51 class Extensions3DUtil;
52 class ImageBuffer; 52 class ImageBuffer;
53 class ImageData;
54 class WebExternalBitmap; 53 class WebExternalBitmap;
55 class WebExternalTextureLayer; 54 class WebExternalTextureLayer;
56 class WebGraphicsContext3D; 55 class WebGraphicsContext3D;
57 class WebLayer; 56 class WebLayer;
58 57
59 // Abstract interface to allow basic context eviction management 58 // Abstract interface to allow basic context eviction management
60 class PLATFORM_EXPORT ContextEvictionManager : public RefCounted<ContextEviction Manager> { 59 class PLATFORM_EXPORT ContextEvictionManager : public RefCounted<ContextEviction Manager> {
61 public: 60 public:
62 virtual ~ContextEvictionManager() {}; 61 virtual ~ContextEvictionManager() {};
63 62
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 // used to resize the Canvas. 296 // used to resize the Canvas.
298 SkBitmap m_resizingBitmap; 297 SkBitmap m_resizingBitmap;
299 298
300 // Used to flip a bitmap vertically. 299 // Used to flip a bitmap vertically.
301 Vector<uint8_t> m_scanline; 300 Vector<uint8_t> m_scanline;
302 }; 301 };
303 302
304 } // namespace blink 303 } // namespace blink
305 304
306 #endif // DrawingBuffer_h 305 #endif // DrawingBuffer_h
OLDNEW
« no previous file with comments | « Source/platform/graphics/filters/Filter.h ('k') | Source/platform/graphics/media/MediaPlayer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698