| 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 6ecb5d766b8902d5cb0f0e6cfe1315de9c39a2be..6bfc3cc3719ec2d63950f568ef7e311e199ad48f 100644
|
| --- a/content/browser/frame_host/debug_urls.cc
|
| +++ b/content/browser/frame_host/debug_urls.cc
|
| @@ -110,15 +110,15 @@ bool HandleAsanDebugURL(const GURL& url) {
|
|
|
| } // namespace
|
|
|
| -bool HandleDebugURL(const GURL& url, PageTransition transition) {
|
| +bool HandleDebugURL(const GURL& url, ui::PageTransition transition) {
|
| // Ensure that the user explicitly navigated to this URL, unless
|
| // kEnableGpuBenchmarking is enabled by Telemetry.
|
| bool is_telemetry_navigation =
|
| base::CommandLine::ForCurrentProcess()->HasSwitch(
|
| cc::switches::kEnableGpuBenchmarking) &&
|
| - (transition & PAGE_TRANSITION_TYPED);
|
| + (transition & ui::PAGE_TRANSITION_TYPED);
|
|
|
| - if (!(transition & PAGE_TRANSITION_FROM_ADDRESS_BAR) &&
|
| + if (!(transition & ui::PAGE_TRANSITION_FROM_ADDRESS_BAR) &&
|
| !is_telemetry_navigation)
|
| return false;
|
|
|
|
|