Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(391)

Unified Diff: chrome/browser/android/vr_shell/toolbar_state.h

Issue 2960903002: VR: Use ToolbarModel to drive VR URL bar state. (Closed)
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/android/vr_shell/toolbar_state.h
diff --git a/chrome/browser/android/vr_shell/toolbar_state.h b/chrome/browser/android/vr_shell/toolbar_state.h
new file mode 100644
index 0000000000000000000000000000000000000000..89b2ad82ccc6d0c8cfd73bfff9ff82c688891c80
--- /dev/null
+++ b/chrome/browser/android/vr_shell/toolbar_state.h
@@ -0,0 +1,34 @@
+// 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_TOOLBAR_STATE_H_
+#define CHROME_BROWSER_ANDROID_VR_SHELL_TOOLBAR_STATE_H_
+
+#include "components/security_state/core/security_state.h"
+#include "url/gurl.h"
+
+namespace gfx {
+struct VectorIcon;
+}
+
+namespace vr_shell {
+
+// Passes information obtained from ToolbarModel to the VR UI framework.
+struct ToolbarState {
+ public:
+ ToolbarState();
+
+ bool operator==(const ToolbarState& other) const;
+ bool operator!=(const ToolbarState& other) const;
+
+ GURL gurl;
+ security_state::SecurityLevel security_level;
+ const gfx::VectorIcon* vector_icon;
+ base::string16 secure_verbose_text;
+ bool should_display_url;
+};
+
+} // namespace vr_shell
+
+#endif // CHROME_BROWSER_ANDROID_VR_SHELL_TOOLBAR_STATE_H_

Powered by Google App Engine
This is Rietveld 408576698