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

Side by Side Diff: Source/core/platform/graphics/chromium/LazyDecodingPixelRef.cpp

Issue 15447002: Remove ~1750 superfluous includes from core (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebase a few hours Created 7 years, 7 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) 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 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 12 matching lines...) Expand all
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #include "config.h" 26 #include "config.h"
27 #include "core/platform/graphics/chromium/LazyDecodingPixelRef.h" 27 #include "core/platform/graphics/chromium/LazyDecodingPixelRef.h"
28 28
29 #include "SkData.h" 29 #include "SkData.h"
30 #include "core/platform/chromium/TraceEvent.h" 30 #include "core/platform/chromium/TraceEvent.h"
31 #include "core/platform/graphics/chromium/ImageDecodingStore.h" 31 #include "core/platform/graphics/chromium/ImageDecodingStore.h"
32 #include "core/platform/graphics/chromium/ImageFrameGenerator.h" 32 #include "core/platform/graphics/chromium/ImageFrameGenerator.h"
33 #include "core/platform/image-decoders/ImageDecoder.h"
34 #include <wtf/MainThread.h> 33 #include <wtf/MainThread.h>
35 34
36 namespace WebCore { 35 namespace WebCore {
37 36
38 LazyDecodingPixelRef::LazyDecodingPixelRef(PassRefPtr<ImageFrameGenerator> frame Generator, const SkISize& scaledSize, const SkIRect& scaledSubset) 37 LazyDecodingPixelRef::LazyDecodingPixelRef(PassRefPtr<ImageFrameGenerator> frame Generator, const SkISize& scaledSize, const SkIRect& scaledSubset)
39 : m_frameGenerator(frameGenerator) 38 : m_frameGenerator(frameGenerator)
40 , m_scaledSize(scaledSize) 39 , m_scaledSize(scaledSize)
41 , m_scaledSubset(scaledSubset) 40 , m_scaledSubset(scaledSubset)
42 , m_lockedCachedImage(0) 41 , m_lockedCachedImage(0)
43 { 42 {
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 } 125 }
127 126
128 void LazyDecodingPixelRef::Decode() 127 void LazyDecodingPixelRef::Decode()
129 { 128 {
130 lockPixels(); 129 lockPixels();
131 unlockPixels(); 130 unlockPixels();
132 } 131 }
133 132
134 133
135 } // namespace WebKit 134 } // namespace WebKit
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698