diff --git a/ash/ash_strings.grd b/ash/ash_strings.grd
index da9dab463e80f..1f9fbd8a073e1 100644
--- a/ash/ash_strings.grd
+++ b/ash/ash_strings.grd
@@ -1556,6 +1556,9 @@ Style notes:
         off
       </message>
        <!--  Video Conference bubble  -->
+      <message name="IDS_ASH_VIDEO_CONFERENCE_ACCESSIBLE_NAME" desc="The accessible name and tooltip for the video conference bubble, and the button which lives in the tray that shows the bubble.">
+         Video Call Controls
+      </message>
       <message name="IDS_ASH_VIDEO_CONFERENCE_RETURN_TO_APP_SUMMARY_TEXT" desc="The summary text in the return to app panel of the video conference panel, specifying how many video conferencing apps are in used.">
         Used by <ph name="APP_COUNT">$1<ex>2</ex></ph> apps
       </message>
diff --git a/ash/ash_strings_grd/IDS_ASH_VIDEO_CONFERENCE_ACCESSIBLE_NAME.png.sha1 b/ash/ash_strings_grd/IDS_ASH_VIDEO_CONFERENCE_ACCESSIBLE_NAME.png.sha1
new file mode 100644
index 0000000000000..cf32ec7627bf3
--- /dev/null
+++ b/ash/ash_strings_grd/IDS_ASH_VIDEO_CONFERENCE_ACCESSIBLE_NAME.png.sha1
@@ -0,0 +1 @@
+e7a4fc2ee42d928fb0e9890c02fcb21674c7e671
\ No newline at end of file
diff --git a/ash/system/video_conference/video_conference_tray.cc b/ash/system/video_conference/video_conference_tray.cc
index ea5112e95cf62..c15bf60eefb7f 100644
--- a/ash/system/video_conference/video_conference_tray.cc
+++ b/ash/system/video_conference/video_conference_tray.cc
@@ -268,16 +268,11 @@ views::Widget* VideoConferenceTray::GetBubbleWidget() const {
 }
 
 std::u16string VideoConferenceTray::GetAccessibleNameForTray() {
-  // TODO(b/253646076): The following is a temporary fix to pass
-  // https://crrev.com/c/4109611 browsertests and still needs to be replaced
-  // with the proper name.
-  return u"Placeholder";
+  return l10n_util::GetStringUTF16(IDS_ASH_VIDEO_CONFERENCE_ACCESSIBLE_NAME);
 }
 
 std::u16string VideoConferenceTray::GetAccessibleNameForBubble() {
-  // TODO(b/261640628): Replace this placeholder with the appropriate string,
-  // once it is decided.
-  return u"Placeholder2";
+  return GetAccessibleNameForTray();
 }
 
 void VideoConferenceTray::HideBubbleWithView(