blob: aa7cac72c014d3f77dbefe3e6a0f56fe4506838e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// 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.
#ifndef ASH_MAGNIFIER_MAGNIFIER_CONSTANTS_H_
#define ASH_MAGNIFIER_MAGNIFIER_CONSTANTS_H_
namespace ash {
// Note: Do not change these values; UMA and prefs depend on them.
enum MagnifierType {
MAGNIFIER_FULL = 1,
MAGNIFIER_PARTIAL = 2,
};
const int kMaxMagnifierType = 2;
const MagnifierType kDefaultMagnifierType = MAGNIFIER_FULL;
} // namespace ash
#endif // ASH_MAGNIFIER_MAGNIFIER_CONSTANTS_H_
|