Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(676)

Side by Side Diff: ui/views/widget/native_widget_mac.mm

Issue 693523003: MacViews: Put wm window animation calls behind an interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@views-clipboard
Patch Set: Fix windows build Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ui/views/widget/native_widget_mac.h ('k') | ui/views/widget/native_widget_private.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « ui/views/widget/native_widget_mac.h ('k') | ui/views/widget/native_widget_private.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698