1 // Copyright (c) 2012 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 "base/basictypes.h"
9 #include "third_party/skia/include/core/SkPath.h"
10 #include "ui/gfx/gfx_export.h"
11 #include "ui/gfx/native_widget_types.h"
15 class GFX_EXPORT Path
: public SkPath
{
17 // Used by Path(Point,size_t) constructor.
29 // Creates a path populated with the specified points.
30 Path(const Point
* points
, size_t count
);
31 Path(const PointF
* points
, size_t count
);
36 DISALLOW_COPY_AND_ASSIGN(Path
);
41 #endif // UI_GFX_PATH_H_