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

Side by Side Diff: cc/test/fake_web_compositor_software_output_device.h

Issue 11192030: cc: Switch to Chromium DCHECKs LOGs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebaseonenne Created 8 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « cc/test/fake_web_compositor_output_surface.h ('k') | cc/test/scheduler_test_common.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 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef FakeWebCompositorSoftwareOutputDevice_h 5 #ifndef FakeWebCompositorSoftwareOutputDevice_h
6 #define FakeWebCompositorSoftwareOutputDevice_h 6 #define FakeWebCompositorSoftwareOutputDevice_h
7 7
8 #include "base/logging.h"
8 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
9 #include "third_party/skia/include/core/SkDevice.h" 10 #include "third_party/skia/include/core/SkDevice.h"
10 #include <public/WebCompositorSoftwareOutputDevice.h> 11 #include <public/WebCompositorSoftwareOutputDevice.h>
11 #include <public/WebImage.h> 12 #include <public/WebImage.h>
12 #include <public/WebSize.h> 13 #include <public/WebSize.h>
13 14
14 namespace WebKit { 15 namespace WebKit {
15 16
16 class FakeWebCompositorSoftwareOutputDevice : public WebCompositorSoftwareOutput Device { 17 class FakeWebCompositorSoftwareOutputDevice : public WebCompositorSoftwareOutput Device {
17 public: 18 public:
18 virtual WebImage* lock(bool forWrite) OVERRIDE 19 virtual WebImage* lock(bool forWrite) OVERRIDE
19 { 20 {
20 ASSERT(m_device.get()); 21 DCHECK(m_device.get());
21 m_image = m_device->accessBitmap(forWrite); 22 m_image = m_device->accessBitmap(forWrite);
22 return &m_image; 23 return &m_image;
23 } 24 }
24 virtual void unlock() OVERRIDE 25 virtual void unlock() OVERRIDE
25 { 26 {
26 m_image.reset(); 27 m_image.reset();
27 } 28 }
28 29
29 virtual void didChangeViewportSize(WebSize size) OVERRIDE 30 virtual void didChangeViewportSize(WebSize size) OVERRIDE
30 { 31 {
31 if (m_device.get() && size.width == m_device->width() && size.height == m_device->height()) 32 if (m_device.get() && size.width == m_device->width() && size.height == m_device->height())
32 return; 33 return;
33 34
34 m_device.reset(new SkDevice(SkBitmap::kARGB_8888_Config, size.width, siz e.height, true)); 35 m_device.reset(new SkDevice(SkBitmap::kARGB_8888_Config, size.width, siz e.height, true));
35 } 36 }
36 37
37 private: 38 private:
38 scoped_ptr<SkDevice> m_device; 39 scoped_ptr<SkDevice> m_device;
39 WebImage m_image; 40 WebImage m_image;
40 }; 41 };
41 42
42 } // namespace WebKit 43 } // namespace WebKit
43 44
44 #endif // FakeWebCompositorSoftwareOutputDevice_h 45 #endif // FakeWebCompositorSoftwareOutputDevice_h
OLDNEW
« no previous file with comments | « cc/test/fake_web_compositor_output_surface.h ('k') | cc/test/scheduler_test_common.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698