| Index: chrome/browser/ui/views/screen_capture_notification_ui_views.cc
|
| diff --git a/chrome/browser/ui/views/screen_capture_notification_ui_views.cc b/chrome/browser/ui/views/screen_capture_notification_ui_views.cc
|
| index 280d4fa1c3c40696d5060112c5225c0af472cfde..d101cc2c809280446a862eae1e398480cd600c37 100644
|
| --- a/chrome/browser/ui/views/screen_capture_notification_ui_views.cc
|
| +++ b/chrome/browser/ui/views/screen_capture_notification_ui_views.cc
|
| @@ -35,6 +35,7 @@ const int kMaximumWidth = 1000;
|
| const int kHorizontalMargin = 10;
|
| const int kPadding = 5;
|
| const int kPaddingLeft = 10;
|
| +const float kWindowAlphaValue = 0.85f;
|
|
|
| namespace {
|
|
|
| @@ -207,7 +208,7 @@ gfx::NativeViewId ScreenCaptureNotificationUIViews::OnStarted(
|
| work_area.y() + work_area.height() - size.height(),
|
| size.width(), size.height());
|
| widget->SetBounds(bounds);
|
| -
|
| + widget->SetOpacity(0xFF * kWindowAlphaValue);
|
| widget->Show();
|
|
|
| #if defined(OS_WIN)
|
|
|