Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(118)

Unified Diff: ui/views/widget/widget.cc

Issue 1380973003: Add a flag use_software_compositing to the Widget::InitParams structure. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix alignment Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/views/widget/widget.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/widget/widget.cc
diff --git a/ui/views/widget/widget.cc b/ui/views/widget/widget.cc
index 154d107a63b298fbb7f6d0eb764d924ecc1a734b..e1fc508d798f0d5ca94f7ee9050a231c2c09ccb9 100644
--- a/ui/views/widget/widget.cc
+++ b/ui/views/widget/widget.cc
@@ -123,7 +123,8 @@ Widget::InitParams::InitParams()
desktop_window_tree_host(NULL),
layer_type(ui::LAYER_TEXTURED),
context(NULL),
- force_show_in_taskbar(false) {
+ force_show_in_taskbar(false),
+ force_software_compositing(false) {
}
Widget::InitParams::InitParams(Type type)
@@ -146,7 +147,8 @@ Widget::InitParams::InitParams(Type type)
desktop_window_tree_host(NULL),
layer_type(ui::LAYER_TEXTURED),
context(NULL),
- force_show_in_taskbar(false) {
+ force_show_in_taskbar(false),
+ force_software_compositing(false) {
}
Widget::InitParams::~InitParams() {
« no previous file with comments | « ui/views/widget/widget.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698