OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/native_widget_mac.h" | 5 #include "ui/views/widget/native_widget_mac.h" |
6 | 6 |
7 #import <Cocoa/Cocoa.h> | 7 #import <Cocoa/Cocoa.h> |
8 | 8 |
9 #include "base/mac/foundation_util.h" | 9 #include "base/mac/foundation_util.h" |
10 #include "base/mac/scoped_nsobject.h" | 10 #include "base/mac/scoped_nsobject.h" |
(...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
505 } | 505 } |
506 | 506 |
507 void NativeWidgetMac::EndMoveLoop() { | 507 void NativeWidgetMac::EndMoveLoop() { |
508 NOTIMPLEMENTED(); | 508 NOTIMPLEMENTED(); |
509 } | 509 } |
510 | 510 |
511 void NativeWidgetMac::SetVisibilityChangedAnimationsEnabled(bool value) { | 511 void NativeWidgetMac::SetVisibilityChangedAnimationsEnabled(bool value) { |
512 NOTIMPLEMENTED(); | 512 NOTIMPLEMENTED(); |
513 } | 513 } |
514 | 514 |
| 515 void NativeWidgetMac::SetVisibilityAnimationDuration( |
| 516 const base::TimeDelta& duration) { |
| 517 NOTIMPLEMENTED(); |
| 518 } |
| 519 |
| 520 void NativeWidgetMac::SetVisibilityAnimationTransition( |
| 521 Widget::VisibilityTransition transition) { |
| 522 NOTIMPLEMENTED(); |
| 523 } |
| 524 |
515 ui::NativeTheme* NativeWidgetMac::GetNativeTheme() const { | 525 ui::NativeTheme* NativeWidgetMac::GetNativeTheme() const { |
516 return ui::NativeTheme::instance(); | 526 return ui::NativeTheme::instance(); |
517 } | 527 } |
518 | 528 |
519 void NativeWidgetMac::OnRootViewLayout() { | 529 void NativeWidgetMac::OnRootViewLayout() { |
520 NOTIMPLEMENTED(); | 530 NOTIMPLEMENTED(); |
521 } | 531 } |
522 | 532 |
523 bool NativeWidgetMac::IsTranslucentWindowOpacitySupported() const { | 533 bool NativeWidgetMac::IsTranslucentWindowOpacitySupported() const { |
524 return false; | 534 return false; |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
620 } | 630 } |
621 | 631 |
622 // static | 632 // static |
623 gfx::FontList NativeWidgetPrivate::GetWindowTitleFontList() { | 633 gfx::FontList NativeWidgetPrivate::GetWindowTitleFontList() { |
624 NOTIMPLEMENTED(); | 634 NOTIMPLEMENTED(); |
625 return gfx::FontList(); | 635 return gfx::FontList(); |
626 } | 636 } |
627 | 637 |
628 } // namespace internal | 638 } // namespace internal |
629 } // namespace views | 639 } // namespace views |
OLD | NEW |