diff options
author | bartfab@chromium.org <bartfab@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-15 18:35:25 +0000 |
---|---|---|
committer | bartfab@chromium.org <bartfab@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-15 18:35:25 +0000 |
commit | b7b1ab11bcf97d06af0371dd8898cf62642f48cf (patch) | |
tree | 06400c2f3e800f0df3069f30ea25758f9e18ccec /ui/views/views.gyp | |
parent | 5c82408ae4cd2977e7aa34e9d7ac06cefada1c3a (diff) | |
download | chromium_src-b7b1ab11bcf97d06af0371dd8898cf62642f48cf.zip chromium_src-b7b1ab11bcf97d06af0371dd8898cf62642f48cf.tar.gz chromium_src-b7b1ab11bcf97d06af0371dd8898cf62642f48cf.tar.bz2 |
Remove top and bottom margins from TrayBubbleView
This CL modifies TrayBubbleView so that instead of ~3px margins filled
with a solid color at its top and bottom, the contents extends all the
way to the edges. To prevent the content from drawing over the bubble's
rounded corners, a mask is set on the hosting widget.
Since the masking would not work on Windows non-aura, the previous
behavior is preserved there.
BUG=159682
Review URL: https://chromiumcodereview.appspot.com/11293124
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@167967 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/views/views.gyp')
-rw-r--r-- | ui/views/views.gyp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/ui/views/views.gyp b/ui/views/views.gyp index 793e2ab..1bd8e46 100644 --- a/ui/views/views.gyp +++ b/ui/views/views.gyp @@ -462,10 +462,14 @@ 'sources/': [ ['exclude', 'corewm'], ['exclude', 'widget/desktop_aura'], - ['exclude', 'widget/native_widget_aura_window_observer.cc'], - ['exclude', 'widget/native_widget_aura_window_observer.h'], - ['exclude', 'widget/widget_aura_utils.cc'], - ['exclude', 'widget/widget_aura_utils.h'], + ], + 'sources!': [ + 'bubble/tray_bubble_view.cc', + 'bubble/tray_bubble_view.h', + 'widget/native_widget_aura_window_observer.cc', + 'widget/native_widget_aura_window_observer.h', + 'widget/widget_aura_utils.cc', + 'widget/widget_aura_utils.h', ], }], ['chromeos==1', { |