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

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

Issue 412033002: Merge 284026 "Add app.window.alphaEnabled() and onAlphaEnabledCh..." (Closed) Base URL: svn://svn.chromium.org/chrome/branches/2062/src/
Patch Set: 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') | 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/scoped_nsobject.h" 9 #include "base/mac/scoped_nsobject.h"
10 #include "ui/gfx/font_list.h" 10 #include "ui/gfx/font_list.h"
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 } 352 }
353 353
354 ui::NativeTheme* NativeWidgetMac::GetNativeTheme() const { 354 ui::NativeTheme* NativeWidgetMac::GetNativeTheme() const {
355 return ui::NativeTheme::instance(); 355 return ui::NativeTheme::instance();
356 } 356 }
357 357
358 void NativeWidgetMac::OnRootViewLayout() const { 358 void NativeWidgetMac::OnRootViewLayout() const {
359 NOTIMPLEMENTED(); 359 NOTIMPLEMENTED();
360 } 360 }
361 361
362 bool NativeWidgetMac::IsTranslucentWindowOpacitySupported() const {
363 return false;
364 }
365
362 void NativeWidgetMac::RepostNativeEvent(gfx::NativeEvent native_event) { 366 void NativeWidgetMac::RepostNativeEvent(gfx::NativeEvent native_event) {
363 NOTIMPLEMENTED(); 367 NOTIMPLEMENTED();
364 } 368 }
365 369
366 //////////////////////////////////////////////////////////////////////////////// 370 ////////////////////////////////////////////////////////////////////////////////
367 // Widget, public: 371 // Widget, public:
368 372
369 bool Widget::ConvertRect(const Widget* source, 373 bool Widget::ConvertRect(const Widget* source,
370 const Widget* target, 374 const Widget* target,
371 gfx::Rect* rect) { 375 gfx::Rect* rect) {
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
435 } 439 }
436 440
437 // static 441 // static
438 gfx::FontList NativeWidgetPrivate::GetWindowTitleFontList() { 442 gfx::FontList NativeWidgetPrivate::GetWindowTitleFontList() {
439 NOTIMPLEMENTED(); 443 NOTIMPLEMENTED();
440 return gfx::FontList(); 444 return gfx::FontList();
441 } 445 }
442 446
443 } // namespace internal 447 } // namespace internal
444 } // namespace views 448 } // 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