blob: dbfe49995f78d89fd130d857a9c6c9cf36aa4641 [file] [log] [blame]
// 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 FloatClipRecorder_h
#define FloatClipRecorder_h
#include "core/paint/PaintPhase.h"
#include "platform/geometry/FloatRect.h"
#include "platform/graphics/paint/DisplayItem.h"
#include "wtf/Allocator.h"
#include "wtf/Noncopyable.h"
namespace blink {
class FloatClipRecorder {
USING_FAST_MALLOC(FloatClipRecorder);
WTF_MAKE_NONCOPYABLE(FloatClipRecorder);
public:
FloatClipRecorder(GraphicsContext&,
const DisplayItemClient&,
PaintPhase,
const FloatRect&);
~FloatClipRecorder();
private:
GraphicsContext& m_context;
const DisplayItemClient& m_client;
DisplayItem::Type m_clipType;
};
} // namespace blink
#endif // FloatClipRecorder_h