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

Unified Diff: chrome/browser/ui/webui/options2/chromeos/simple_png_encoder.cc

Issue 10790084: Refactor the wallpaper encoding to another file/class. (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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/webui/options2/chromeos/simple_png_encoder.cc
diff --git a/chrome/browser/ui/webui/options2/chromeos/simple_png_encoder.cc b/chrome/browser/ui/webui/options2/chromeos/simple_png_encoder.cc
new file mode 100644
index 0000000000000000000000000000000000000000..bbbe163e4c6ff90c6f75ed1d992006da3cf7e9c2
--- /dev/null
+++ b/chrome/browser/ui/webui/options2/chromeos/simple_png_encoder.cc
@@ -0,0 +1,66 @@
+// 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/ui/webui/options2/chromeos/simple_png_encoder.h"
+
+#include "base/bind.h"
+#include "base/location.h"
+#include "base/threading/worker_pool.h"
+#include "chrome/browser/chromeos/login/user_manager.h"
+#include "chrome/common/url_constants.h"
+#include "ui/gfx/codec/png_codec.h"
+#include "ui/gfx/size.h"
+#include "ui/gfx/skia_util.h"
+
+extern "C" {
+#if defined(USE_SYSTEM_ZLIB)
+#include <zlib.h>
+#else
+#include "third_party/zlib/zlib.h"
+#endif
+}
+
+namespace chromeos {
+
+SimplePngEncoder::SimplePngEncoder(
+ scoped_refptr<base::RefCountedBytes> data,
+ SkBitmap image,
+ base::Closure cancel_callback)
+ : data_(data),
+ image_(image),
+ cancel_callback_(cancel_callback) {
+}
+
+void SimplePngEncoder::Run(EncoderCallback callback) {
+ base::WorkerPool::PostTaskAndReply(
+ FROM_HERE,
+ base::Bind(&SimplePngEncoder::EncodeWallpaper, this),
+ base::Bind(callback, data_),
+ true /* task_is_slow */);
+}
+
+void SimplePngEncoder::EncodeWallpaper() {
+ if (cancel_flag_.IsSet())
+ return;
+ SkAutoLockPixels lock_input(image_);
+ // Avoid compression to make things faster.
+ gfx::PNGCodec::EncodeWithCompressionLevel(
+ reinterpret_cast<unsigned char*>(image_.getAddr32(0, 0)),
+ gfx::PNGCodec::FORMAT_SkBitmap,
+ gfx::Size(image_.width(), image_.height()),
+ image_.width() * image_.bytesPerPixel(),
+ false,
+ std::vector<gfx::PNGCodec::Comment>(),
+ Z_NO_COMPRESSION,
+ &data_->data());
+}
+
+void SimplePngEncoder::Cancel() {
+ cancel_flag_.Set();
+ cancel_callback_.Run();
+}
+
+SimplePngEncoder::~SimplePngEncoder() {}
+
+} // namespace chromeos

Powered by Google App Engine
This is Rietveld 408576698