blob: 13eabb52c30167ce4002ad445a12af9884d0e3cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef UI_SURFACE_SURFACE_SWITCHES_H_
#define UI_SURFACE_SURFACE_SWITCHES_H_
#include "ui/surface/surface_export.h"
// Defines all the command-line switches used by ui/surface.
namespace switches {
SURFACE_EXPORT extern const char kDoAllShowPresentWithGDI[];
SURFACE_EXPORT extern const char kDoFirstShowPresentWithGDI[];
} // namespace switches
#endif // UI_SURFACE_SURFACE_SWITCHES_H_
|