blob: ab09b8e30dbfcf692f055eac9a7f4095b3bba08e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright 2018 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 COMPONENTS_VIZ_COMMON_CONSTANTS_H_
#define COMPONENTS_VIZ_COMMON_CONSTANTS_H_
#include <stdint.h>
#include "components/viz/common/viz_common_export.h"
namespace viz {
// Keep list in alphabetical order.
VIZ_COMMON_EXPORT extern const uint32_t kDefaultActivationDeadlineInFrames;
} // namespace viz
#endif // COMPONENTS_VIZ_COMMON_CONSTANTS_H_
|