browser_controls_state.h 548 B

123456789101112131415161718192021
  1. // Copyright (c) 2016 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef CC_INPUT_BROWSER_CONTROLS_STATE_H_
  5. #define CC_INPUT_BROWSER_CONTROLS_STATE_H_
  6. namespace cc {
  7. // A Java counterpart will be generated for this enum.
  8. // GENERATED_JAVA_ENUM_PACKAGE: org.chromium.cc.input
  9. enum class BrowserControlsState {
  10. kShown = 1,
  11. kHidden = 2,
  12. kBoth = 3,
  13. kMaxValue = kBoth
  14. };
  15. } // namespace cc
  16. #endif // CC_INPUT_BROWSER_CONTROLS_STATE_H_