summaryrefslogtreecommitdiff
path: root/chromium/components/ntp_snippets/features.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/ntp_snippets/features.cc')
-rw-r--r--chromium/components/ntp_snippets/features.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/components/ntp_snippets/features.cc b/chromium/components/ntp_snippets/features.cc
index c5ea510f1e5..afd397161e1 100644
--- a/chromium/components/ntp_snippets/features.cc
+++ b/chromium/components/ntp_snippets/features.cc
@@ -18,11 +18,11 @@ namespace ntp_snippets {
namespace {
// All platforms proxy for whether the simplified NTP is enabled.
bool IsSimplifiedNtpEnabled() {
-#if defined(OS_ANDROID)
+#if BUILDFLAG(IS_ANDROID)
return true;
#else
return false;
-#endif // OS_ANDROID
+#endif // BUILDFLAG(IS_ANDROID)
}
} // namespace