blob: f42839bc26f5aea7025911605885038bdd01477a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// Copyright (c) 2012 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.
// Defines all the "cc" command-line switches.
#ifndef CC_SWITCHES_H_
#define CC_SWITCHES_H_
#include "webkit/glue/webkit_glue_export.h"
// Since cc is used from the render process, anything that goes here also needs
// to be added to render_process_host_impl.cc.
namespace cc {
namespace switches {
WEBKIT_GLUE_EXPORT extern const char kBackgroundColorInsteadOfCheckerboard[];
WEBKIT_GLUE_EXPORT extern const char kDisableThreadedAnimation[];
WEBKIT_GLUE_EXPORT extern const char kEnablePartialSwap[];
WEBKIT_GLUE_EXPORT extern const char kEnablePerTilePainting[];
WEBKIT_GLUE_EXPORT extern const char kEnablePinchInCompositor[];
WEBKIT_GLUE_EXPORT extern const char kJankInsteadOfCheckerboard[];
} // namespace switches
} // namespace cc
#endif // CC_SWITCHES_H_
|