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

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

Issue 399133008: MacViews: Remove const from NativeWidgetMac::OnRootViewLayout to match other NativeWidget* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix conflict with r284026 Created 6 years, 5 months 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 | Annotate | Revision Log
« no previous file with comments | « ui/views/widget/native_widget_mac.h ('k') | no next file » | 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 479 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « ui/views/widget/native_widget_mac.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698