Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef UI_GFX_WIN_CONSTANTS_H_ | |
| 6 #define UI_GFX_WIN_CONSTANTS_H_ | |
| 7 | |
| 8 namespace gfx { | |
| 9 | |
| 10 // This property is put on an HWND so the compositor output knows to treat it | |
| 11 // as transparent and draw to it using WS_EX_LAYERED (if using the software | |
| 12 // compositor). | |
| 13 const wchar_t kChromeWindowTranslucent[] = L"Chrome.WindowTranslucent"; | |
|
sky
2017/04/20 17:26:28
We also have ui/base/win/internal_constants.h. Can
| |
| 14 | |
| 15 } // namespace gfx | |
| 16 | |
| 17 #endif // UI_GFX_WIN_CONSTANTS_H_ | |
| OLD | NEW |