| Index: content/browser/frame_host/debug_urls.cc
|
| diff --git a/content/browser/frame_host/debug_urls.cc b/content/browser/frame_host/debug_urls.cc
|
| index 2e61cc1abc565eb21fbdfa8ec5105a47cf072165..c404067ee04d2bf84e53cb1d05fbe8c6bc417d99 100644
|
| --- a/content/browser/frame_host/debug_urls.cc
|
| +++ b/content/browser/frame_host/debug_urls.cc
|
| @@ -21,11 +21,12 @@
|
| #include "content/public/browser/browser_thread.h"
|
| #include "content/public/common/content_constants.h"
|
| #include "content/public/common/url_constants.h"
|
| +#include "ppapi/features/features.h"
|
| #include "ppapi/proxy/ppapi_messages.h"
|
| #include "third_party/kasko/kasko_features.h"
|
| #include "url/gurl.h"
|
|
|
| -#if defined(ENABLE_PLUGINS)
|
| +#if BUILDFLAG(ENABLE_PLUGINS)
|
| #include "content/browser/ppapi_plugin_process_host.h"
|
| #endif
|
|
|
| @@ -55,7 +56,7 @@ const char kKaskoSendReport[] = "/send-report";
|
| #endif
|
|
|
| void HandlePpapiFlashDebugURL(const GURL& url) {
|
| -#if defined(ENABLE_PLUGINS)
|
| +#if BUILDFLAG(ENABLE_PLUGINS)
|
| bool crash = url == kChromeUIPpapiFlashCrashURL;
|
|
|
| std::vector<PpapiPluginProcessHost*> hosts;
|
|
|