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

Side by Side Diff: ui/gfx/image/canvas_image_source.cc

Issue 10701063: Cleanup gfx::Canvas now that 10562027 has landed (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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 | « ui/gfx/canvas_skia.cc ('k') | ui/gfx/image/image.cc » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 #include "ui/gfx/image/canvas_image_source.h" 5 #include "ui/gfx/image/canvas_image_source.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "ui/gfx/canvas.h" 8 #include "ui/gfx/canvas.h"
9 #include "ui/base/layout.h" 9 #include "ui/base/layout.h"
10 10
11 namespace gfx { 11 namespace gfx {
12 12
13 //////////////////////////////////////////////////////////////////////////////// 13 ////////////////////////////////////////////////////////////////////////////////
14 // CanvasImageSource 14 // CanvasImageSource
15 15
16 CanvasImageSource::CanvasImageSource(const gfx::Size& size, bool is_opaque) 16 CanvasImageSource::CanvasImageSource(const gfx::Size& size, bool is_opaque)
17 : size_(size), 17 : size_(size),
18 is_opaque_(is_opaque) { 18 is_opaque_(is_opaque) {
19 } 19 }
20 20
21 gfx::ImageSkiaRep CanvasImageSource::GetImageForScale( 21 gfx::ImageSkiaRep CanvasImageSource::GetImageForScale(
22 ui::ScaleFactor scale_factor) { 22 ui::ScaleFactor scale_factor) {
23 gfx::Canvas canvas(size_, scale_factor, is_opaque_); 23 gfx::Canvas canvas(size_, scale_factor, is_opaque_);
24 Draw(&canvas); 24 Draw(&canvas);
25 return canvas.ExtractImageSkiaRep(); 25 return canvas.ExtractImageRep();
26 } 26 }
27 27
28 } // namespace gfx 28 } // namespace gfx
OLDNEW
« no previous file with comments | « ui/gfx/canvas_skia.cc ('k') | ui/gfx/image/image.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698