diff options
author | pkotwicz@chromium.org <pkotwicz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-25 16:13:12 +0000 |
---|---|---|
committer | pkotwicz@chromium.org <pkotwicz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-25 16:13:12 +0000 |
commit | 679facce5dd679ccdc3f00b6dc4414cddf1b2ccc (patch) | |
tree | fe9f77f3b49ca907df1ff346d08b94e0259b89a5 /chrome/browser/icon_loader.h | |
parent | 3b7cb21f445d82cbeaa9c81491165fcf6960864e (diff) | |
download | chromium_src-679facce5dd679ccdc3f00b6dc4414cddf1b2ccc.zip chromium_src-679facce5dd679ccdc3f00b6dc4414cddf1b2ccc.tar.gz chromium_src-679facce5dd679ccdc3f00b6dc4414cddf1b2ccc.tar.bz2 |
Added support for Hidpi in download UI
BUG=136949
TEST=Manual, see instructions below
Run chrome with --force-device-scale-factor=2 --highlight-missing-2x-resources
Ensure that the file type icon in the download bar shows up red
Review URL: https://chromiumcodereview.appspot.com/10703173
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148334 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/icon_loader.h')
-rw-r--r-- | chrome/browser/icon_loader.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/icon_loader.h b/chrome/browser/icon_loader.h index d7b124b..ff22c7a 100644 --- a/chrome/browser/icon_loader.h +++ b/chrome/browser/icon_loader.h @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -27,7 +27,7 @@ typedef std::string IconGroupID; //////////////////////////////////////////////////////////////////////////////// // // A facility to read a file containing an icon asynchronously in the IO -// thread. Returns the icon in the form of an SkBitmap. +// thread. Returns the icon in the form of an ImageSkia. // //////////////////////////////////////////////////////////////////////////////// class IconLoader : public base::RefCountedThreadSafe<IconLoader> { @@ -43,7 +43,7 @@ class IconLoader : public base::RefCountedThreadSafe<IconLoader> { public: // Invoked when an icon has been read. |source| is the IconLoader. If the // icon has been successfully loaded, result is non-null. This method must - // return true if it is taking ownership of the returned bitmap. + // return true if it is taking ownership of the returned image. virtual bool OnImageLoaded(IconLoader* source, gfx::Image* result) = 0; protected: |