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

Side by Side Diff: Source/WebKit/chromium/tests/DragImageTest.cpp

Issue 15350006: Decode GIF image frames on demand. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 6 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 66
67 virtual PassRefPtr<NativeImageSkia> nativeImageForCurrentFrame() 67 virtual PassRefPtr<NativeImageSkia> nativeImageForCurrentFrame()
68 { 68 {
69 if (m_size.isZero()) 69 if (m_size.isZero())
70 return 0; 70 return 0;
71 71
72 return m_nativeImage; 72 return m_nativeImage;
73 } 73 }
74 74
75 // Stub implementations of pure virtual Image functions. 75 // Stub implementations of pure virtual Image functions.
76 virtual void destroyDecodedData(bool) 76 virtual void destroyDecodedData()
77 { 77 {
78 } 78 }
79 79
80 virtual unsigned int decodedSize() const 80 virtual unsigned int decodedSize() const
81 { 81 {
82 return 0u; 82 return 0u;
83 } 83 }
84 84
85 virtual bool currentFrameKnownToBeOpaque() 85 virtual bool currentFrameKnownToBeOpaque()
86 { 86 {
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 // Tests that the drag image is a deep copy. 143 // Tests that the drag image is a deep copy.
144 RefPtr<TestImage> testImage(TestImage::create(IntSize(1, 1))); 144 RefPtr<TestImage> testImage(TestImage::create(IntSize(1, 1)));
145 DragImageRef dragImage = createDragImageFromImage(testImage.get()); 145 DragImageRef dragImage = createDragImageFromImage(testImage.get());
146 ASSERT_TRUE(dragImage); 146 ASSERT_TRUE(dragImage);
147 SkAutoLockPixels lock1(*dragImage->bitmap), lock2(testImage->nativeImage ForCurrentFrame()->bitmap()); 147 SkAutoLockPixels lock1(*dragImage->bitmap), lock2(testImage->nativeImage ForCurrentFrame()->bitmap());
148 EXPECT_NE(dragImage->bitmap->getPixels(), testImage->nativeImageForCurre ntFrame()->bitmap().getPixels()); 148 EXPECT_NE(dragImage->bitmap->getPixels(), testImage->nativeImageForCurre ntFrame()->bitmap().getPixels());
149 } 149 }
150 } 150 }
151 151
152 } // anonymous namespace 152 } // anonymous namespace
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698