Disable ExtensionIconSourceTest.IconLoaded* on Mac and Win
[chromium-blink-merge.git] / ui / gfx / path_win.h
blob6df025b1bfca51857683c0d3aef7eea01fefe8cf
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.
5 #ifndef UI_GFX_PATH_WIN_H_
6 #define UI_GFX_PATH_WIN_H_
8 #include <windows.h>
10 #include "ui/base/ui_export.h"
12 class SkPath;
14 namespace gfx {
16 // Creates a new HRGN given |path|. The caller is responsible for destroying
17 // the returned region.
18 UI_EXPORT HRGN CreateHRGNFromSkPath(const SkPath& path);
20 } // namespace gfx
22 #endif // UI_GFX_PATH_WIN_H_