blob: 5d97c3f9c08765fdadfa13dda90c0eba945c4159 [file] [log] [blame]
// Copyright 2017 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 WebMenuSourceType_h
#define WebMenuSourceType_h
namespace blink {
enum WebMenuSourceType {
kMenuSourceNone,
kMenuSourceMouse,
kMenuSourceKeyboard,
kMenuSourceTouch,
kMenuSourceTouchEditMenu,
kMenuSourceLongPress,
kMenuSourceLongTap,
kMenuSourceTouchHandle,
kMenuSourceStylus,
kMenuSourceTypeLast = kMenuSourceStylus
};
} // namespace blink
#endif