Replace IS_CHROMEOS_ASH with IS_CHROMEOS in chrome [12/N].
This is part of Lacros sunset. Since Lacros is gone, the two macros
mean the same thing.
Bug: 354842935
Change-Id: Ib7fa4507d2378290b29b392d9262d851bac462ae
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6332909
Reviewed-by: Georg Neis <[email protected]>
Commit-Queue: Yuta Hijikata <[email protected]>
Cr-Commit-Position: refs/heads/main@{#1428781}
diff --git a/chrome/browser/hid/hid_pinned_notification.cc b/chrome/browser/hid/hid_pinned_notification.cc
index e9cbde9..7daa487f 100644
--- a/chrome/browser/hid/hid_pinned_notification.cc
+++ b/chrome/browser/hid/hid_pinned_notification.cc
@@ -4,6 +4,7 @@
#include "chrome/browser/hid/hid_pinned_notification.h"
+#include "build/build_config.h"
#include "chrome/browser/device_notifications/device_pinned_notification_renderer.h"
#include "chrome/grit/generated_resources.h"
@@ -11,7 +12,7 @@
: HidSystemTrayIcon(std::make_unique<DevicePinnedNotificationRenderer>(
this,
"chrome://device_indicator/hid/",
-#if BUILDFLAG(IS_CHROMEOS_ASH)
+#if BUILDFLAG(IS_CHROMEOS)
ash::NotificationCatalogName::kWebHid,
#endif
IDS_WEBHID_SYSTEM_TRAY_ICON_EXTENSION_LIST)) {}