| Index: ui/views/widget/widget.h
|
| diff --git a/ui/views/widget/widget.h b/ui/views/widget/widget.h
|
| index 0fbf979b0b15345e6e1d61f36d811c4bd19f9d1f..aa89478dd50604acafdad03b842dbdbdafbaaa52 100644
|
| --- a/ui/views/widget/widget.h
|
| +++ b/ui/views/widget/widget.h
|
| @@ -165,12 +165,15 @@ class VIEWS_EXPORT Widget : public internal::NativeWidgetDelegate,
|
|
|
| enum WindowOpacity {
|
| // Infer fully opaque or not. For WinAura, top-level windows that are not
|
| - // of TYPE_WINDOW are translucent so that they can be made to fade in. In
|
| - // all other cases, windows are fully opaque.
|
| + // of TYPE_WINDOW are translucent so that they can be made to fade in.
|
| + // For LinuxAura, only windows that are TYPE_DRAG are translucent. In all
|
| + // other cases, windows are fully opaque.
|
| INFER_OPACITY,
|
| // Fully opaque.
|
| OPAQUE_WINDOW,
|
| - // Possibly translucent/transparent.
|
| + // Possibly translucent/transparent. Widgets that fade in or out using
|
| + // SetOpacity() but do not make use of an alpha channel should use
|
| + // INFER_OPACITY.
|
| TRANSLUCENT_WINDOW,
|
| };
|
|
|
|
|