summaryrefslogtreecommitdiffstats
path: root/chromium/skia/ext/lazy_pixel_ref_utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/skia/ext/lazy_pixel_ref_utils.h')
-rw-r--r--chromium/skia/ext/lazy_pixel_ref_utils.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/chromium/skia/ext/lazy_pixel_ref_utils.h b/chromium/skia/ext/lazy_pixel_ref_utils.h
deleted file mode 100644
index 33fe039e1ac..00000000000
--- a/chromium/skia/ext/lazy_pixel_ref_utils.h
+++ /dev/null
@@ -1,33 +0,0 @@
-// Copyright 2013 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.
-
-#ifndef SKIA_EXT_LAZY_PIXEL_REF_UTILS_H_
-#define SKIA_EXT_LAZY_PIXEL_REF_UTILS_H_
-
-#include <vector>
-
-#include "SkPicture.h"
-#include "SkRect.h"
-
-namespace skia {
-
-class LazyPixelRef;
-class SK_API LazyPixelRefUtils {
- public:
-
- struct PositionLazyPixelRef {
- skia::LazyPixelRef* lazy_pixel_ref;
- SkRect pixel_ref_rect;
- };
-
- static void GatherPixelRefs(
- SkPicture* picture,
- std::vector<PositionLazyPixelRef>* lazy_pixel_refs);
-};
-
-typedef std::vector<LazyPixelRefUtils::PositionLazyPixelRef> LazyPixelRefList;
-
-} // namespace skia
-
-#endif