| Index: chrome/browser/android/vr_shell/ui_elements/button.cc
|
| diff --git a/chrome/browser/android/vr_shell/ui_elements/button.cc b/chrome/browser/android/vr_shell/ui_elements/button.cc
|
| index 0f300aaed7cbeb2c812d6bc1293f51ddcb765c34..a0ef817df0a1822e102775800291b470817d2ddb 100644
|
| --- a/chrome/browser/android/vr_shell/ui_elements/button.cc
|
| +++ b/chrome/browser/android/vr_shell/ui_elements/button.cc
|
| @@ -10,9 +10,10 @@
|
|
|
| namespace vr_shell {
|
|
|
| -Button::Button(base::Callback<void()> click_handler,
|
| +Button::Button(int id,
|
| + base::Callback<void()> click_handler,
|
| std::unique_ptr<ButtonTexture> texture)
|
| - : TexturedElement(256),
|
| + : TexturedElement(id, 256),
|
| texture_(std::move(texture)),
|
| click_handler_(click_handler) {}
|
|
|
|
|