Chromium Code Reviews| Index: chrome/browser/chromeos/login/helper.cc |
| diff --git a/chrome/browser/chromeos/login/helper.cc b/chrome/browser/chromeos/login/helper.cc |
| index 41f01ebe27cb8404e41456f858a9e03ec7917f8a..d45d31762095ead57c829441a30cdf402c11b0a9 100644 |
| --- a/chrome/browser/chromeos/login/helper.cc |
| +++ b/chrome/browser/chromeos/login/helper.cc |
| @@ -111,8 +111,6 @@ int GetCurrentUserImageSize() { |
| float scale_factor = gfx::Display::GetForcedDeviceScaleFactor(); |
| if (scale_factor > 1.0f) |
| return static_cast<int>(scale_factor * kBaseUserImageSize); |
| - if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kLoad2xResources)) |
|
pkotwicz
2012/08/07 16:04:58
Aren't you losing functionality here?
flackr
2012/08/07 18:05:41
Yes, I was presuming that we would use the above s
|
| - return 2 * kBaseUserImageSize; |
| return kBaseUserImageSize; |
| } |