Index: tools/telemetry/telemetry/internal/image_processing/image_util_bitmap_impl.py |
diff --git a/tools/telemetry/telemetry/internal/image_processing/image_util_bitmap_impl.py b/tools/telemetry/telemetry/internal/image_processing/image_util_bitmap_impl.py |
deleted file mode 100644 |
index 18e4554c0f65e4e12bb34a0b801d6a3d4d00d4e4..0000000000000000000000000000000000000000 |
--- a/tools/telemetry/telemetry/internal/image_processing/image_util_bitmap_impl.py |
+++ /dev/null |
@@ -1,50 +0,0 @@ |
-# Copyright 2014 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. |
- |
-from __future__ import division |
- |
-from telemetry.internal.image_processing import _bitmap |
- |
- |
-def Channels(bitmap): |
- return bitmap.bpp |
- |
-def Width(bitmap): |
- return bitmap.width |
- |
-def Height(bitmap): |
- return bitmap.height |
- |
-def Pixels(bitmap): |
- return bitmap.pixels |
- |
-def GetPixelColor(bitmap, x, y): |
- return bitmap.GetPixelColor(x, y) |
- |
-def WritePngFile(bitmap, path): |
- bitmap.WritePngFile(path) |
- |
-def FromRGBPixels(width, height, pixels, bpp): |
- return _bitmap.Bitmap(bpp, width, height, pixels) |
- |
-def FromPng(png_data): |
- return _bitmap.Bitmap.FromPng(png_data) |
- |
-def FromPngFile(path): |
- return _bitmap.Bitmap.FromPngFile(path) |
- |
-def AreEqual(bitmap1, bitmap2, tolerance, _): |
- return bitmap1.IsEqual(bitmap2, tolerance) |
- |
-def Diff(bitmap1, bitmap2): |
- return bitmap1.Diff(bitmap2) |
- |
-def GetBoundingBox(bitmap, color, tolerance): |
- return bitmap.GetBoundingBox(color, tolerance) |
- |
-def Crop(bitmap, left, top, width, height): |
- return bitmap.Crop(left, top, width, height) |
- |
-def GetColorHistogram(bitmap, ignore_color, tolerance): |
- return bitmap.ColorHistogram(ignore_color, tolerance) |