summaryrefslogtreecommitdiff
path: root/chromium/cc/input/browser_controls_state.h
blob: df7481e397cf8c84a2ae9c88e189d636c5d4371a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CC_INPUT_BROWSER_CONTROLS_STATE_H_
#define CC_INPUT_BROWSER_CONTROLS_STATE_H_

namespace cc {

// A Java counterpart will be generated for this enum.
// GENERATED_JAVA_ENUM_PACKAGE: org.chromium.cc.input
enum class BrowserControlsState {
  kShown = 1,
  kHidden = 2,
  kBoth = 3,
  kMaxValue = kBoth
};

}  // namespace cc

#endif  // CC_INPUT_BROWSER_CONTROLS_STATE_H_