HomeSort by relevance Sort by last modified time
    Searched refs:window_mask (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium_org/ui/views/window/
window_shape.cc 12 void GetDefaultWindowMask(const gfx::Size &size, gfx::Path *window_mask) {
14 window_mask->moveTo(0, 3);
15 window_mask->lineTo(1, 2);
16 window_mask->lineTo(1, 1);
17 window_mask->lineTo(2, 1);
18 window_mask->lineTo(3, 0);
20 window_mask->lineTo(SkIntToScalar(size.width() - 3), 0);
21 window_mask->lineTo(SkIntToScalar(size.width() - 2), 1);
22 window_mask->lineTo(SkIntToScalar(size.width() - 1), 1);
23 window_mask->lineTo(SkIntToScalar(size.width() - 1), 2)
    [all...]
window_shape.h 20 gfx::Path* window_mask);
native_frame_view.h 27 gfx::Path* window_mask) OVERRIDE;
non_client_view.h 76 gfx::Path* window_mask) = 0;
177 void GetWindowMask(const gfx::Size& size, gfx::Path* window_mask);
native_frame_view.cc 57 gfx::Path* window_mask) {
custom_frame_view.h 47 gfx::Path* window_mask) OVERRIDE;
non_client_view.cc 99 gfx::Path* window_mask) {
100 frame_view_->GetWindowMask(size, window_mask);
custom_frame_view.cc 179 gfx::Path* window_mask) {
180 DCHECK(window_mask);
184 GetDefaultWindowMask(size, window_mask);
  /external/chromium_org/chrome/browser/ui/views/message_center/
message_center_frame_view.h 30 gfx::Path* window_mask) OVERRIDE;
message_center_frame_view.cc 54 gfx::Path* window_mask) {
  /external/chromium_org/chrome/browser/ui/views/panels/
panel_frame_view.cc 356 gfx::Path window_mask; local
357 GetWindowMask(size(), &window_mask); local
358 base::win::ScopedRegion new_region(gfx::CreateHRGNFromSkPath(window_mask));
441 gfx::Path* window_mask) {
446 window_mask->moveTo(0, 3);
447 window_mask->lineTo(1, 2);
448 window_mask->lineTo(1, 1);
449 window_mask->lineTo(2, 1);
450 window_mask->lineTo(3, 0);
451 window_mask->lineTo(SkIntToScalar(width - 3), 0)
    [all...]
panel_frame_view.h 64 gfx::Path* window_mask) OVERRIDE;
  /external/chromium_org/chrome/browser/ui/views/apps/
glass_app_window_frame_view_win.h 33 gfx::Path* window_mask) OVERRIDE;
glass_app_window_frame_view_win.cc 96 gfx::Path* window_mask) {
  /external/chromium_org/ui/views/widget/desktop_aura/
desktop_window_tree_host_x11_unittest.cc 101 gfx::Path* window_mask) OVERRIDE {
105 window_mask->moveTo(0, 0);
106 window_mask->lineTo(0, bottom);
107 window_mask->lineTo(right, bottom);
108 window_mask->lineTo(right, 10);
109 window_mask->lineTo(right - 10, 10);
110 window_mask->lineTo(right - 10, 0);
111 window_mask->close();
  /external/chromium_org/apps/ui/views/
app_window_frame_view.h 74 gfx::Path* window_mask) OVERRIDE;
app_window_frame_view.cc 228 gfx::Path* window_mask) {
  /external/chromium_org/ash/frame/
custom_frame_view_ash.h 50 gfx::Path* window_mask) OVERRIDE;
  /external/chromium_org/ash/wm/panels/
panel_frame_view.h 49 gfx::Path* window_mask) OVERRIDE;
  /external/chromium_org/chrome/browser/ui/views/frame/
browser_non_client_frame_view_ash.h 50 gfx::Path* window_mask) OVERRIDE;
glass_browser_frame_view.h 37 virtual void GetWindowMask(const gfx::Size& size, gfx::Path* window_mask)
opaque_browser_frame_view.h 55 virtual void GetWindowMask(const gfx::Size& size, gfx::Path* window_mask)
opaque_browser_frame_view.cc 264 gfx::Path* window_mask) {
265 DCHECK(window_mask);
270 views::GetDefaultWindowMask(size, window_mask);
    [all...]
  /external/chromium_org/ui/views/bubble/
bubble_frame_view.h 45 gfx::Path* window_mask) OVERRIDE;
bubble_frame_view.cc 126 gfx::Path* window_mask) {
145 window_mask->addRoundRect(rect, kCornerRadius, kCornerRadius);
149 window_mask->addRect(rect);

Completed in 367 milliseconds

1 2