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

Unified Diff: chrome/browser/chromeos/login/user_image.cc

Issue 10448105: Revert "Added support for animated/nonanimated user image. There are no" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/chromeos/login/user_image.h ('k') | chrome/browser/chromeos/login/user_image_loader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/user_image.cc
diff --git a/chrome/browser/chromeos/login/user_image.cc b/chrome/browser/chromeos/login/user_image.cc
deleted file mode 100644
index cf8fbcf5e17283a8b432630c2b6782e46b6b294d..0000000000000000000000000000000000000000
--- a/chrome/browser/chromeos/login/user_image.cc
+++ /dev/null
@@ -1,48 +0,0 @@
-// 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.
-
-#include "chrome/browser/chromeos/login/user_image.h"
-
-namespace chromeos {
-
-namespace {
-
-bool IsAnimatedImage(const UserImage::RawImage& data) {
- const char kGIFStamp[] = "GIF";
- const size_t kGIFStampLength = sizeof(kGIFStamp) - 1;
-
- if (data.size() >= kGIFStampLength &&
- memcmp(&data[0], kGIFStamp, kGIFStampLength) == 0) {
- return true;
- }
- return false;
-}
-
-} // namespace
-
-UserImage::UserImage(const gfx::ImageSkia& image)
- : image_(image),
- has_raw_image_(false),
- has_animated_image_(false) {
-}
-
-UserImage::UserImage(const gfx::ImageSkia& image,
- const RawImage& raw_image)
- : image_(image),
- has_raw_image_(true),
- has_animated_image_(IsAnimatedImage(raw_image)),
- raw_image_(raw_image) {
-}
-
-UserImage::~UserImage() {}
-
-void UserImage::SetImage(const gfx::ImageSkia& image) {
- image_ = image;
- has_raw_image_ = false;
- has_animated_image_ = false;
- // Clear |raw_image_|.
- RawImage().swap(raw_image_);
-}
-
-} // namespace chromeos
« no previous file with comments | « chrome/browser/chromeos/login/user_image.h ('k') | chrome/browser/chromeos/login/user_image_loader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698