Index: ui/views/widget/native_widget_mac.mm |
diff --git a/ui/views/widget/native_widget_mac.mm b/ui/views/widget/native_widget_mac.mm |
index 080bc390cb7e494b281e78d05db6cc600f2c93e9..feff784c1b624a54cc75b48728f3bb5571b0c330 100644 |
--- a/ui/views/widget/native_widget_mac.mm |
+++ b/ui/views/widget/native_widget_mac.mm |
@@ -169,6 +169,11 @@ void NativeWidgetMac::Restore() {} |
void NativeWidgetMac::SetFullscreen(bool fullscreen) {} |
bool NativeWidgetMac::IsFullscreen() const { return false; } |
void NativeWidgetMac::SetOpacity(unsigned char opacity) {} |
+ |
+void NativeWidgetMac::SetHasShadow(bool has_shadow) { |
+ [window_ setHasShadow:has_shadow]; |
tapted
2014/05/06 00:02:46
You'll have to leave this bit off for now after re
|
+} |
+ |
void NativeWidgetMac::SetUseDragFrame(bool use_drag_frame) {} |
void NativeWidgetMac::FlashFrame(bool flash_frame) {} |
void NativeWidgetMac::RunShellDrag(View* view, |