Commit 1f74b1a0 authored by Noel Gordon's avatar Noel Gordon Committed by Commit Bot

Follow-up crrev.com/555893 use std::string instead of auto

Bug: 833834
Change-Id: Iea9d32052c6ffbe17bf2cdd5075cbf5e9a203e0a
Reviewed-on: https://chromium-review.googlesource.com/1042428Reviewed-by: default avatarStuart Langley <slangley@chromium.org>
Commit-Queue: Noel Gordon <noel@chromium.org>
Cr-Commit-Position: refs/heads/master@{#555932}
parent ae62ba99
...@@ -768,7 +768,7 @@ void FileManagerBrowserTestBase::OnCommand(const std::string& name, ...@@ -768,7 +768,7 @@ void FileManagerBrowserTestBase::OnCommand(const std::string& name,
ASSERT_TRUE(value.GetString("extensionId", &extension_id)); ASSERT_TRUE(value.GetString("extensionId", &extension_id));
ASSERT_TRUE(value.GetString("notificationId", &notification_id)); ASSERT_TRUE(value.GetString("notificationId", &notification_id));
const auto delegate_id = extension_id + "-" + notification_id; const std::string delegate_id = extension_id + "-" + notification_id;
base::Optional<message_center::Notification> notification = base::Optional<message_center::Notification> notification =
display_service_->GetNotification(delegate_id); display_service_->GetNotification(delegate_id);
EXPECT_TRUE(notification); EXPECT_TRUE(notification);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment