Index: chrome/browser/android/vr_shell/ui_elements/ui_element_identifiers.h |
diff --git a/chrome/browser/android/vr_shell/ui_elements/ui_element_identifiers.h b/chrome/browser/android/vr_shell/ui_elements/ui_element_identifiers.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..bd3076512df45a76a469a05555f4fb8bfe2a1a34 |
--- /dev/null |
+++ b/chrome/browser/android/vr_shell/ui_elements/ui_element_identifiers.h |
@@ -0,0 +1,20 @@ |
+// 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 CHROME_BROWSER_ANDROID_VR_SHELL_UI_ELEMENTS_UI_ELEMENT_IDENTIFIERS_H_ |
+#define CHROME_BROWSER_ANDROID_VR_SHELL_UI_ELEMENTS_UI_ELEMENT_IDENTIFIERS_H_ |
+ |
+namespace vr_shell { |
+ |
+// This class manages the communication of browser state from VR shell to the |
+// HTML UI. State information is asynchronous and unidirectional. |
+enum UiElementIdentifier { |
+ kNone = 0, |
+ kWebVrPermanentHttpSecurityWarning, |
+ kWebVrTransientHttpSecurityWarning, |
+}; |
+ |
+} // namespace vr_shell |
+ |
+#endif // CHROME_BROWSER_ANDROID_VR_SHELL_UI_ELEMENTS_UI_ELEMENT_IDENTIFIERS_H_ |