Index: ui/gfx/image/image_util_ios.mm |
diff --git a/ui/gfx/image/image_util_ios.mm b/ui/gfx/image/image_util_ios.mm |
deleted file mode 100644 |
index 737ee1b2ab078c7d47305c412e5e2a57992c2101..0000000000000000000000000000000000000000 |
--- a/ui/gfx/image/image_util_ios.mm |
+++ /dev/null |
@@ -1,27 +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 <UIKit/UIKit.h> |
- |
-#include "ui/gfx/image/image.h" |
-#include "ui/gfx/image/image_util.h" |
- |
-#include "base/logging.h" |
- |
-namespace gfx { |
- |
-bool JPEG1xEncodedDataFromImage(const Image& image, |
- int quality, |
- std::vector<unsigned char>* dst) { |
- NSData* data = UIImageJPEGRepresentation(image.ToUIImage(), quality / 100.0); |
- |
- if ([data length] == 0) |
- return false; |
- |
- dst->resize([data length]); |
- [data getBytes:&dst->at(0) length:[data length]]; |
- return true; |
-} |
- |
-} // end namespace gfx |