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

Side by Side Diff: third_party/WebKit/Source/platform/graphics/PictureSnapshot.cpp

Issue 1950253002: Remove Source/platform/image-encoders/skia (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compile: adjust platform and core file #includes. Created 4 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) 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 21 matching lines...) Expand all
32 32
33 #include "platform/geometry/IntSize.h" 33 #include "platform/geometry/IntSize.h"
34 #include "platform/graphics/ImageBuffer.h" 34 #include "platform/graphics/ImageBuffer.h"
35 #include "platform/graphics/LoggingCanvas.h" 35 #include "platform/graphics/LoggingCanvas.h"
36 #include "platform/graphics/ProfilingCanvas.h" 36 #include "platform/graphics/ProfilingCanvas.h"
37 #include "platform/graphics/ReplayingCanvas.h" 37 #include "platform/graphics/ReplayingCanvas.h"
38 #include "platform/graphics/skia/ImagePixelLocker.h" 38 #include "platform/graphics/skia/ImagePixelLocker.h"
39 #include "platform/image-decoders/ImageDecoder.h" 39 #include "platform/image-decoders/ImageDecoder.h"
40 #include "platform/image-decoders/ImageFrame.h" 40 #include "platform/image-decoders/ImageFrame.h"
41 #include "platform/image-decoders/SegmentReader.h" 41 #include "platform/image-decoders/SegmentReader.h"
42 #include "platform/image-encoders/skia/PNGImageEncoder.h" 42 #include "platform/image-encoders/PNGImageEncoder.h"
43 #include "third_party/skia/include/core/SkData.h" 43 #include "third_party/skia/include/core/SkData.h"
44 #include "third_party/skia/include/core/SkImage.h" 44 #include "third_party/skia/include/core/SkImage.h"
45 #include "third_party/skia/include/core/SkPictureRecorder.h" 45 #include "third_party/skia/include/core/SkPictureRecorder.h"
46 #include "third_party/skia/include/core/SkStream.h" 46 #include "third_party/skia/include/core/SkStream.h"
47 #include "wtf/CurrentTime.h" 47 #include "wtf/CurrentTime.h"
48 #include "wtf/HexNumber.h" 48 #include "wtf/HexNumber.h"
49 #include "wtf/text/Base64.h" 49 #include "wtf/text/Base64.h"
50 #include "wtf/text/TextEncoding.h" 50 #include "wtf/text/TextEncoding.h"
51 51
52 namespace blink { 52 namespace blink {
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 174
175 PassRefPtr<JSONArray> PictureSnapshot::snapshotCommandLog() const 175 PassRefPtr<JSONArray> PictureSnapshot::snapshotCommandLog() const
176 { 176 {
177 const SkIRect bounds = m_picture->cullRect().roundOut(); 177 const SkIRect bounds = m_picture->cullRect().roundOut();
178 LoggingCanvas canvas(bounds.width(), bounds.height()); 178 LoggingCanvas canvas(bounds.width(), bounds.height());
179 m_picture->playback(&canvas); 179 m_picture->playback(&canvas);
180 return canvas.log(); 180 return canvas.log();
181 } 181 }
182 182
183 } // namespace blink 183 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698