| Index: chrome/browser/extensions/api/notifications/notifications_apitest.cc
|
| diff --git a/chrome/browser/extensions/api/notifications/notifications_apitest.cc b/chrome/browser/extensions/api/notifications/notifications_apitest.cc
|
| index b03ea5d26f6edf52e253c3dde66688f092d44264..39abdd96447dad68e53b172977c8e7e357a62fd0 100644
|
| --- a/chrome/browser/extensions/api/notifications/notifications_apitest.cc
|
| +++ b/chrome/browser/extensions/api/notifications/notifications_apitest.cc
|
| @@ -278,7 +278,7 @@ IN_PROC_BROWSER_TEST_F(NotificationsApiTest, TestGetPermissionLevel) {
|
| std::unique_ptr<base::Value> result(utils::RunFunctionAndReturnSingleResult(
|
| notification_function.get(), "[]", browser(), utils::NONE));
|
|
|
| - EXPECT_EQ(base::Value::TYPE_STRING, result->GetType());
|
| + EXPECT_EQ(base::Value::Type::STRING, result->GetType());
|
| std::string permission_level;
|
| EXPECT_TRUE(result->GetAsString(&permission_level));
|
| EXPECT_EQ("granted", permission_level);
|
| @@ -303,7 +303,7 @@ IN_PROC_BROWSER_TEST_F(NotificationsApiTest, TestGetPermissionLevel) {
|
| std::unique_ptr<base::Value> result(utils::RunFunctionAndReturnSingleResult(
|
| notification_function.get(), "[]", browser(), utils::NONE));
|
|
|
| - EXPECT_EQ(base::Value::TYPE_STRING, result->GetType());
|
| + EXPECT_EQ(base::Value::Type::STRING, result->GetType());
|
| std::string permission_level;
|
| EXPECT_TRUE(result->GetAsString(&permission_level));
|
| EXPECT_EQ("denied", permission_level);
|
|
|