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

Side by Side Diff: third_party/WebKit/Source/platform/DragImageTest.cpp

Issue 2640983002: Rename paint data structures (Closed)
Patch Set: Rebase Created 3 years, 10 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) 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 } 70 }
71 71
72 bool currentFrameKnownToBeOpaque(MetadataMode = UseCurrentMetadata) override { 72 bool currentFrameKnownToBeOpaque(MetadataMode = UseCurrentMetadata) override {
73 return false; 73 return false;
74 } 74 }
75 75
76 void destroyDecodedData() override { 76 void destroyDecodedData() override {
77 // Image pure virtual stub. 77 // Image pure virtual stub.
78 } 78 }
79 79
80 void draw(SkCanvas*, 80 void draw(PaintCanvas*,
81 const SkPaint&, 81 const PaintFlags&,
82 const FloatRect&, 82 const FloatRect&,
83 const FloatRect&, 83 const FloatRect&,
84 RespectImageOrientationEnum, 84 RespectImageOrientationEnum,
85 ImageClampingMode, 85 ImageClampingMode,
86 const ColorBehavior&) override { 86 const ColorBehavior&) override {
87 // Image pure virtual stub. 87 // Image pure virtual stub.
88 } 88 }
89 89
90 private: 90 private:
91 explicit TestImage(sk_sp<SkImage> image) : m_image(image) {} 91 explicit TestImage(sk_sp<SkImage> image) : m_image(image) {}
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 { 222 {
223 SkAutoLockPixels lock1(dragBitmap); 223 SkAutoLockPixels lock1(dragBitmap);
224 SkAutoLockPixels lock2(expectedBitmap); 224 SkAutoLockPixels lock2(expectedBitmap);
225 for (int x = 0; x < dragBitmap.width(); ++x) 225 for (int x = 0; x < dragBitmap.width(); ++x)
226 for (int y = 0; y < dragBitmap.height(); ++y) 226 for (int y = 0; y < dragBitmap.height(); ++y)
227 EXPECT_EQ(expectedBitmap.getColor(x, y), dragBitmap.getColor(x, y)); 227 EXPECT_EQ(expectedBitmap.getColor(x, y), dragBitmap.getColor(x, y));
228 } 228 }
229 } 229 }
230 230
231 } // namespace blink 231 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698