| Index: chrome/browser/android/vr_shell/textures/ui_texture.cc
|
| diff --git a/chrome/browser/android/vr_shell/textures/ui_texture.cc b/chrome/browser/android/vr_shell/textures/ui_texture.cc
|
| index 02eccd784a99356c6cb2eed3b7590619463c7761..99b9705361b604169d7d76a013dd8d18ba0a04bf 100644
|
| --- a/chrome/browser/android/vr_shell/textures/ui_texture.cc
|
| +++ b/chrome/browser/android/vr_shell/textures/ui_texture.cc
|
| @@ -56,6 +56,15 @@ bool UiTexture::HitTest(const gfx::PointF& point) const {
|
| return false;
|
| }
|
|
|
| +void UiTexture::SetMode(ColorScheme::Mode mode) {
|
| + if (mode_ == mode)
|
| + return;
|
| + mode_ = mode;
|
| + OnSetMode();
|
| +}
|
| +
|
| +void UiTexture::OnSetMode() {}
|
| +
|
| std::vector<std::unique_ptr<gfx::RenderText>> UiTexture::PrepareDrawStringRect(
|
| const base::string16& text,
|
| const gfx::FontList& font_list,
|
|
|