1 // Copyright (c) 2013 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 #include "ui/surface/surface_switches.h" 6 7 namespace switches { 8 9 // Flags for enabling speculative fix for http://crbug.com/169848 10 11 // Use GDI to do every first Present after the tab is unhidden. 12 const char kDoAllShowPresentWithGDI[] = "all-show-present-with-GDI"; 13 14 // Use GDI to do the fist Present after the tab is unhidden. 15 const char kDoFirstShowPresentWithGDI[] = "first-show-present-with-GDI"; 16 17 18 } // namespace switches 19 20