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

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

Issue 2960903002: VR: Use ToolbarModel to drive VR URL bar state. (Closed)
Patch Set: Update toolbar build file to include vector icons for Android. 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
« no previous file with comments | « chrome/browser/android/vr_shell/toolbar_helper.cc ('k') | chrome/browser/android/vr_shell/toolbar_state.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..a39de5f66a28a9fcee2c2e17993d4419949212e1
--- /dev/null
+++ b/chrome/browser/android/vr_shell/toolbar_state.h
@@ -0,0 +1,39 @@
+// 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();
+ ToolbarState(const GURL& url,
+ security_state::SecurityLevel level,
+ const gfx::VectorIcon* icon,
+ base::string16 verbose_text,
+ bool display_url);
+
+ 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_
« no previous file with comments | « chrome/browser/android/vr_shell/toolbar_helper.cc ('k') | chrome/browser/android/vr_shell/toolbar_state.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698