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

Unified Diff: chrome/browser/android/vr_shell/ui_elements/url_bar.cc

Issue 2966793002: NOT FOR REVIEW - convert to cc animation
Patch Set: switch to transform operations 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/ui_elements/url_bar.h ('k') | chrome/browser/android/vr_shell/ui_scene.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/android/vr_shell/ui_elements/url_bar.cc
diff --git a/chrome/browser/android/vr_shell/ui_elements/url_bar.cc b/chrome/browser/android/vr_shell/ui_elements/url_bar.cc
index 40dede3c1bd3f4bfde5d187eb32797ab3be602f6..c6d1928a9ff2239b066a90a674e894b18c34392f 100644
--- a/chrome/browser/android/vr_shell/ui_elements/url_bar.cc
+++ b/chrome/browser/android/vr_shell/ui_elements/url_bar.cc
@@ -19,11 +19,12 @@ constexpr int64_t kUpdateDelayMS = 50;
} // namespace
-UrlBar::UrlBar(int preferred_width,
+UrlBar::UrlBar(int id,
+ int preferred_width,
const base::Callback<void()>& back_button_callback,
const base::Callback<void()>& security_icon_callback,
const base::Callback<void(UiUnsupportedMode)>& failure_callback)
- : TexturedElement(preferred_width),
+ : TexturedElement(id, preferred_width),
texture_(base::MakeUnique<UrlBarTexture>(false, failure_callback)),
back_button_callback_(back_button_callback),
security_icon_callback_(security_icon_callback) {}
« no previous file with comments | « chrome/browser/android/vr_shell/ui_elements/url_bar.h ('k') | chrome/browser/android/vr_shell/ui_scene.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698