Index: content/browser/webui/content_web_ui_controller_factory.cc |
diff --git a/content/browser/webui/content_web_ui_controller_factory.cc b/content/browser/webui/content_web_ui_controller_factory.cc |
index 1e52bc294fc230017f8afddb4ebc5472c2d0810b..0ca8a83848be98a3fc38c079ea7184491fe5d585 100644 |
--- a/content/browser/webui/content_web_ui_controller_factory.cc |
+++ b/content/browser/webui/content_web_ui_controller_factory.cc |
@@ -17,8 +17,9 @@ |
#include "content/public/browser/web_contents.h" |
#include "content/public/browser/web_ui.h" |
#include "content/public/common/url_constants.h" |
+#include "media/media_features.h" |
-#if defined(ENABLE_WEBRTC) |
+#if BUILDFLAG(ENABLE_WEBRTC) |
#include "content/browser/webrtc/webrtc_internals_ui.h" |
#endif |
@@ -79,7 +80,7 @@ WebUIController* ContentWebUIControllerFactory::CreateWebUIControllerForURL( |
return new TracingUI(web_ui); |
#endif |
-#if defined(ENABLE_WEBRTC) |
+#if BUILDFLAG(ENABLE_WEBRTC) |
if (url.host_piece() == kChromeUIWebRTCInternalsHost) |
return new WebRTCInternalsUI(web_ui); |
#endif |