1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
8 #include "platform/graphics/GraphicsContext.h"
9 #include "wtf/Allocator.h"
14 ALLOW_ONLY_INLINE_ALLOCATION();
15 WTF_MAKE_NONCOPYABLE(ClipScope
);
17 ClipScope(GraphicsContext
* context
)
22 void clip(const LayoutRect
& clipRect
, SkRegion::Op operation
);
25 GraphicsContext
* m_context
;