// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ui/gfx/x/x11_path.h" #include <memory> #include "third_party/skia/include/core/SkPath.h" #include "third_party/skia/include/core/SkRegion.h" namespace x11 { std::unique_ptr<std::vector<Rectangle>> CreateRegionFromSkRegion( const SkRegion& region) { … } std::unique_ptr<std::vector<Rectangle>> CreateRegionFromSkPath( const SkPath& path) { … } } // namespace x11