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

Side by Side Diff: Source/core/platform/graphics/Image.cpp

Issue 37803003: Move GraphicsTypes* and ColorSpace to Source/platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: I misread Adam's comment, the exports are needed in one place Created 7 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/core/platform/graphics/Image.h ('k') | Source/core/platform/graphics/ImageBuffer.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) 2006 Samuel Weinig (sam.weinig@gmail.com) 2 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com)
3 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
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 13 matching lines...) Expand all
24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */ 25 */
26 26
27 #include "config.h" 27 #include "config.h"
28 #include "core/platform/graphics/Image.h" 28 #include "core/platform/graphics/Image.h"
29 29
30 #include "core/platform/MIMETypeRegistry.h" 30 #include "core/platform/MIMETypeRegistry.h"
31 #include "core/platform/graphics/BitmapImage.h" 31 #include "core/platform/graphics/BitmapImage.h"
32 #include "core/platform/graphics/GraphicsContext.h" 32 #include "core/platform/graphics/GraphicsContext.h"
33 #include "core/platform/graphics/GraphicsContextStateSaver.h" 33 #include "core/platform/graphics/GraphicsContextStateSaver.h"
34 #include "core/platform/graphics/GraphicsTypes.h"
35 #include "platform/Length.h" 34 #include "platform/Length.h"
36 #include "platform/SharedBuffer.h" 35 #include "platform/SharedBuffer.h"
37 #include "platform/TraceEvent.h" 36 #include "platform/TraceEvent.h"
38 #include "platform/geometry/FloatPoint.h" 37 #include "platform/geometry/FloatPoint.h"
39 #include "platform/geometry/FloatRect.h" 38 #include "platform/geometry/FloatRect.h"
40 #include "platform/geometry/FloatSize.h" 39 #include "platform/geometry/FloatSize.h"
41 #include "platform/geometry/IntRect.h" 40 #include "platform/geometry/IntRect.h"
41 #include "platform/graphics/GraphicsTypes.h"
42 #include "public/platform/Platform.h" 42 #include "public/platform/Platform.h"
43 #include "public/platform/WebData.h" 43 #include "public/platform/WebData.h"
44 #include "wtf/MainThread.h" 44 #include "wtf/MainThread.h"
45 #include "wtf/StdLibExtras.h" 45 #include "wtf/StdLibExtras.h"
46 46
47 #include <math.h> 47 #include <math.h>
48 48
49 namespace WebCore { 49 namespace WebCore {
50 50
51 Image::Image(ImageObserver* observer) 51 Image::Image(ImageObserver* observer)
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 } 233 }
234 234
235 void Image::computeIntrinsicDimensions(Length& intrinsicWidth, Length& intrinsic Height, FloatSize& intrinsicRatio) 235 void Image::computeIntrinsicDimensions(Length& intrinsicWidth, Length& intrinsic Height, FloatSize& intrinsicRatio)
236 { 236 {
237 intrinsicRatio = size(); 237 intrinsicRatio = size();
238 intrinsicWidth = Length(intrinsicRatio.width(), Fixed); 238 intrinsicWidth = Length(intrinsicRatio.width(), Fixed);
239 intrinsicHeight = Length(intrinsicRatio.height(), Fixed); 239 intrinsicHeight = Length(intrinsicRatio.height(), Fixed);
240 } 240 }
241 241
242 } 242 }
OLDNEW
« no previous file with comments | « Source/core/platform/graphics/Image.h ('k') | Source/core/platform/graphics/ImageBuffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698