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

Side by Side Diff: Source/platform/graphics/ImageFrameGenerator.h

Issue 644913009: Clean up forward declarations in Source/platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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
« no previous file with comments | « Source/platform/graphics/Canvas2DImageBufferSurface.h ('k') | Source/platform/heap/Heap.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) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 24 matching lines...) Expand all
35 #include "wtf/PassRefPtr.h" 35 #include "wtf/PassRefPtr.h"
36 #include "wtf/RefCounted.h" 36 #include "wtf/RefCounted.h"
37 #include "wtf/RefPtr.h" 37 #include "wtf/RefPtr.h"
38 #include "wtf/ThreadingPrimitives.h" 38 #include "wtf/ThreadingPrimitives.h"
39 #include "wtf/ThreadSafeRefCounted.h" 39 #include "wtf/ThreadSafeRefCounted.h"
40 #include "wtf/Vector.h" 40 #include "wtf/Vector.h"
41 41
42 namespace blink { 42 namespace blink {
43 43
44 class ImageDecoder; 44 class ImageDecoder;
45 class ImagePlanes;
46 class SharedBuffer; 45 class SharedBuffer;
47 46
48 class PLATFORM_EXPORT ImageDecoderFactory { 47 class PLATFORM_EXPORT ImageDecoderFactory {
49 WTF_MAKE_NONCOPYABLE(ImageDecoderFactory); 48 WTF_MAKE_NONCOPYABLE(ImageDecoderFactory);
50 public: 49 public:
51 ImageDecoderFactory() {} 50 ImageDecoderFactory() {}
52 virtual ~ImageDecoderFactory() { } 51 virtual ~ImageDecoderFactory() { }
53 virtual PassOwnPtr<ImageDecoder> create() = 0; 52 virtual PassOwnPtr<ImageDecoder> create() = 0;
54 }; 53 };
55 54
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 // Prevents multiple decode operations on the same data. 116 // Prevents multiple decode operations on the same data.
118 Mutex m_decodeMutex; 117 Mutex m_decodeMutex;
119 118
120 // Protect concurrent access to m_hasAlpha. 119 // Protect concurrent access to m_hasAlpha.
121 Mutex m_alphaMutex; 120 Mutex m_alphaMutex;
122 }; 121 };
123 122
124 } // namespace blink 123 } // namespace blink
125 124
126 #endif 125 #endif
OLDNEW
« no previous file with comments | « Source/platform/graphics/Canvas2DImageBufferSurface.h ('k') | Source/platform/heap/Heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698