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

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

Issue 10702136: Support high dpi in menu scroll arrow, submenu arrow and drag_utils. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 5 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "ui/gfx/image/canvas_image_source.h"
6
7 #include "base/logging.h"
8 #include "ui/gfx/canvas.h"
9 #include "ui/base/layout.h"
10
11 namespace gfx {
12
13 ////////////////////////////////////////////////////////////////////////////////
14 // CanvasImageSource
15
16 CanvasImageSource::CanvasImageSource(const gfx::Size& size, bool is_opaque)
17 : size_(size),
18 is_opaque_(is_opaque) {
19 }
20
21 gfx::ImageSkiaRep CanvasImageSource::GetImageForScale(
22 ui::ScaleFactor scale_factor) {
23 gfx::Canvas canvas(size_, scale_factor, is_opaque_);
24 Draw(&canvas);
25 return canvas.ExtractImageSkiaRep();
26 }
27
28 } // namespace gfx
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698