Index: third_party/WebKit/public/web/WebMenuSourceType.h |
diff --git a/third_party/WebKit/public/web/WebMenuSourceType.h b/third_party/WebKit/public/web/WebMenuSourceType.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..ce2e78ba45fb54893259acc4a9d14d4159d7dbf6 |
--- /dev/null |
+++ b/third_party/WebKit/public/web/WebMenuSourceType.h |
@@ -0,0 +1,24 @@ |
+// 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, |
+ kMenuSourceTypeLast = kMenuSourceTouchHandle |
+}; |
+ |
+} // namespace blink |
+ |
+#endif |