| 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 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 490 } | 490 } |
| 491 | 491 |
| 492 void NativeWidgetMac::SetVisibilityChangedAnimationsEnabled(bool value) { | 492 void NativeWidgetMac::SetVisibilityChangedAnimationsEnabled(bool value) { |
| 493 NOTIMPLEMENTED(); | 493 NOTIMPLEMENTED(); |
| 494 } | 494 } |
| 495 | 495 |
| 496 ui::NativeTheme* NativeWidgetMac::GetNativeTheme() const { | 496 ui::NativeTheme* NativeWidgetMac::GetNativeTheme() const { |
| 497 return ui::NativeTheme::instance(); | 497 return ui::NativeTheme::instance(); |
| 498 } | 498 } |
| 499 | 499 |
| 500 void NativeWidgetMac::OnRootViewLayout() const { | 500 void NativeWidgetMac::OnRootViewLayout() { |
| 501 NOTIMPLEMENTED(); | 501 NOTIMPLEMENTED(); |
| 502 } | 502 } |
| 503 | 503 |
| 504 bool NativeWidgetMac::IsTranslucentWindowOpacitySupported() const { | 504 bool NativeWidgetMac::IsTranslucentWindowOpacitySupported() const { |
| 505 return false; | 505 return false; |
| 506 } | 506 } |
| 507 | 507 |
| 508 void NativeWidgetMac::RepostNativeEvent(gfx::NativeEvent native_event) { | 508 void NativeWidgetMac::RepostNativeEvent(gfx::NativeEvent native_event) { |
| 509 NOTIMPLEMENTED(); | 509 NOTIMPLEMENTED(); |
| 510 } | 510 } |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 597 } | 597 } |
| 598 | 598 |
| 599 // static | 599 // static |
| 600 gfx::FontList NativeWidgetPrivate::GetWindowTitleFontList() { | 600 gfx::FontList NativeWidgetPrivate::GetWindowTitleFontList() { |
| 601 NOTIMPLEMENTED(); | 601 NOTIMPLEMENTED(); |
| 602 return gfx::FontList(); | 602 return gfx::FontList(); |
| 603 } | 603 } |
| 604 | 604 |
| 605 } // namespace internal | 605 } // namespace internal |
| 606 } // namespace views | 606 } // namespace views |
| OLD | NEW |