OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ui/views/widget/widget.h" | 5 #include "ui/views/widget/widget.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
10 #include "base/strings/utf_string_conversions.h" | 10 #include "base/strings/utf_string_conversions.h" |
(...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
546 } | 546 } |
547 | 547 |
548 void Widget::StackAbove(gfx::NativeView native_view) { | 548 void Widget::StackAbove(gfx::NativeView native_view) { |
549 native_widget_->StackAbove(native_view); | 549 native_widget_->StackAbove(native_view); |
550 } | 550 } |
551 | 551 |
552 void Widget::StackAtTop() { | 552 void Widget::StackAtTop() { |
553 native_widget_->StackAtTop(); | 553 native_widget_->StackAtTop(); |
554 } | 554 } |
555 | 555 |
556 void Widget::StackBelow(gfx::NativeView native_view) { | |
557 native_widget_->StackBelow(native_view); | |
558 } | |
559 | |
560 void Widget::SetShape(std::unique_ptr<SkRegion> shape) { | 556 void Widget::SetShape(std::unique_ptr<SkRegion> shape) { |
561 native_widget_->SetShape(std::move(shape)); | 557 native_widget_->SetShape(std::move(shape)); |
562 } | 558 } |
563 | 559 |
564 void Widget::Close() { | 560 void Widget::Close() { |
565 if (widget_closed_) { | 561 if (widget_closed_) { |
566 // It appears we can hit this code path if you close a modal dialog then | 562 // It appears we can hit this code path if you close a modal dialog then |
567 // close the last browser before the destructor is hit, which triggers | 563 // close the last browser before the destructor is hit, which triggers |
568 // invoking Close again. | 564 // invoking Close again. |
569 return; | 565 return; |
(...skipping 928 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1498 | 1494 |
1499 //////////////////////////////////////////////////////////////////////////////// | 1495 //////////////////////////////////////////////////////////////////////////////// |
1500 // internal::NativeWidgetPrivate, NativeWidget implementation: | 1496 // internal::NativeWidgetPrivate, NativeWidget implementation: |
1501 | 1497 |
1502 internal::NativeWidgetPrivate* NativeWidgetPrivate::AsNativeWidgetPrivate() { | 1498 internal::NativeWidgetPrivate* NativeWidgetPrivate::AsNativeWidgetPrivate() { |
1503 return this; | 1499 return this; |
1504 } | 1500 } |
1505 | 1501 |
1506 } // namespace internal | 1502 } // namespace internal |
1507 } // namespace views | 1503 } // namespace views |
OLD | NEW |