| Index: cc/paint/draw_image.h
|
| diff --git a/cc/playback/draw_image.h b/cc/paint/draw_image.h
|
| similarity index 90%
|
| rename from cc/playback/draw_image.h
|
| rename to cc/paint/draw_image.h
|
| index d3633e0114156cdf2d31cd4a91c8b40ccc393709..33479ebc011b0283403c7d13112da26525b2b403 100644
|
| --- a/cc/playback/draw_image.h
|
| +++ b/cc/paint/draw_image.h
|
| @@ -2,10 +2,10 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef CC_PLAYBACK_DRAW_IMAGE_H_
|
| -#define CC_PLAYBACK_DRAW_IMAGE_H_
|
| +#ifndef CC_PAINT_DRAW_IMAGE_H_
|
| +#define CC_PAINT_DRAW_IMAGE_H_
|
|
|
| -#include "cc/base/cc_export.h"
|
| +#include "cc/paint/paint_export.h"
|
| #include "third_party/skia/include/core/SkFilterQuality.h"
|
| #include "third_party/skia/include/core/SkImage.h"
|
| #include "third_party/skia/include/core/SkMatrix.h"
|
| @@ -17,7 +17,7 @@ namespace cc {
|
|
|
| // TODO(vmpstr): This should probably be DISALLOW_COPY_AND_ASSIGN and transport
|
| // it around using a pointer, since it became kind of large. Profile.
|
| -class CC_EXPORT DrawImage {
|
| +class CC_PAINT_EXPORT DrawImage {
|
| public:
|
| DrawImage();
|
| DrawImage(sk_sp<const SkImage> image,
|
| @@ -51,4 +51,4 @@ class CC_EXPORT DrawImage {
|
|
|
| } // namespace cc
|
|
|
| -#endif // CC_PLAYBACK_DRAW_IMAGE_H_
|
| +#endif // CC_PAINT_DRAW_IMAGE_H_
|
|
|