| Index: Source/core/paint/ReplacedPainter.h
|
| diff --git a/Source/core/paint/ReplacedPainter.h b/Source/core/paint/ReplacedPainter.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..fd7430998a121333d74a0190e5ae5987cb0b9f53
|
| --- /dev/null
|
| +++ b/Source/core/paint/ReplacedPainter.h
|
| @@ -0,0 +1,26 @@
|
| +// 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.
|
| +
|
| +#ifndef ReplacedPainter_h
|
| +#define ReplacedPainter_h
|
| +
|
| +namespace blink {
|
| +
|
| +struct PaintInfo;
|
| +class LayoutPoint;
|
| +class RenderReplaced;
|
| +
|
| +class ReplacedPainter {
|
| +public:
|
| + ReplacedPainter(RenderReplaced& renderReplaced) : m_renderReplaced(renderReplaced) { }
|
| +
|
| + void paint(PaintInfo&, const LayoutPoint&);
|
| +
|
| +private:
|
| + RenderReplaced& m_renderReplaced;
|
| +};
|
| +
|
| +} // namespace blink
|
| +
|
| +#endif // ReplacedPainter_h
|
|
|