| 697 | } |
| 698 | |
| 699 | void Widget::getRegion(gfx::Region& region) |
| 700 | { |
| 701 | if (type() == kWindowWidget) |
| 702 | theme()->getWindowMask(this, region); |
| 703 | else |
| 704 | region = bounds(); |
| 705 | } |
| 706 | |
| 707 | void Widget::getDrawableRegion(gfx::Region& region, DrawableRegionFlags flags) |
| 708 | { |
no test coverage detected