// 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_