Chromium staging for SkDevice refactoring

https://codereview.chromium.org/23332009/



git-svn-id: http://skia.googlecode.com/svn/trunk@10844 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
robertphillips@google.com 2013-08-21 13:54:44 +00:00
parent eecbe50173
commit 9241e33ca9
3 changed files with 22 additions and 0 deletions

View File

@ -213,6 +213,7 @@
'<(skia_include_path)/core/Sk64.h',
'<(skia_include_path)/core/SkAdvancedTypefaceMetrics.h',
'<(skia_include_path)/core/SkBitmap.h',
'<(skia_include_path)/core/SkBitmapDevice.h',
'<(skia_include_path)/core/SkBlitRow.h',
'<(skia_include_path)/core/SkBounder.h',
'<(skia_include_path)/core/SkCanvas.h',

View File

@ -0,0 +1,19 @@
/*
* Copyright 2013 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SkBitmapDevice_DEFINED
#define SkBitmapDevice_DEFINED
#include "SkDevice.h"
typedef SkDevice SkBitmapDevice;
#endif // SkBitmapDevice_DEFINED

View File

@ -466,4 +466,6 @@ private:
typedef SkRefCnt INHERITED;
};
typedef SkDevice SkBaseDevice;
#endif