| Index: chrome/browser/android/vr_shell/ui_elements/audio_capture_indicator.cc
|
| diff --git a/chrome/browser/android/vr_shell/ui_elements/audio_capture_indicator.cc b/chrome/browser/android/vr_shell/ui_elements/audio_capture_indicator.cc
|
| index 843383e4c306eacbe5492ddf1e266407081872d6..6e3b7df0d59e0acbc483dea288167d7a19e2abf9 100644
|
| --- a/chrome/browser/android/vr_shell/ui_elements/audio_capture_indicator.cc
|
| +++ b/chrome/browser/android/vr_shell/ui_elements/audio_capture_indicator.cc
|
| @@ -6,16 +6,16 @@
|
|
|
| #include "base/memory/ptr_util.h"
|
| #include "chrome/browser/android/vr_shell/textures/system_indicator_texture.h"
|
| -#include "components/strings/grit/components_strings.h"
|
| +#include "chrome/grit/generated_resources.h"
|
| #include "ui/vector_icons/vector_icons.h"
|
|
|
| namespace vr_shell {
|
|
|
| -// TODO(acondor): Set a proper string.
|
| AudioCaptureIndicator::AudioCaptureIndicator(int preferred_width)
|
| : TexturedElement(preferred_width),
|
| - texture_(
|
| - base::MakeUnique<SystemIndicatorTexture>(ui::kMicrophoneIcon, 0)) {}
|
| + texture_(base::MakeUnique<SystemIndicatorTexture>(
|
| + ui::kMicrophoneIcon,
|
| + IDS_AUDIO_CALL_NOTIFICATION_TEXT_2)) {}
|
|
|
| AudioCaptureIndicator::~AudioCaptureIndicator() = default;
|
|
|
|
|