| Index: content/browser/devtools/devtools_manager_unittest.cc | 
| diff --git a/content/browser/devtools/devtools_manager_unittest.cc b/content/browser/devtools/devtools_manager_unittest.cc | 
| index 9d63fa73ecba4b82770941bc6caaa155e337aafa..22329b1207b91ae46c02aecaebf5babd7cc41d7b 100644 | 
| --- a/content/browser/devtools/devtools_manager_unittest.cc | 
| +++ b/content/browser/devtools/devtools_manager_unittest.cc | 
| @@ -24,6 +24,7 @@ | 
| #include "content/public/browser/devtools_external_agent_proxy.h" | 
| #include "content/public/browser/devtools_external_agent_proxy_delegate.h" | 
| #include "content/public/browser/web_contents_delegate.h" | 
| +#include "content/public/common/browser_side_navigation_policy.h" | 
| #include "content/public/test/test_utils.h" | 
| #include "content/test/test_content_browser_client.h" | 
| #include "content/test/test_render_view_host.h" | 
| @@ -173,6 +174,9 @@ TEST_F(DevToolsManagerTest, NoUnresponsiveDialogInInspectedContents) { | 
| } | 
|  | 
| TEST_F(DevToolsManagerTest, ReattachOnCancelPendingNavigation) { | 
| +  // This test triggers incorrect notifications with PlzNavigate. | 
| +  if (IsBrowserSideNavigationEnabled()) | 
| +    return; | 
| // Navigate to URL.  First URL should use first RenderViewHost. | 
| const GURL url("http://www.google.com"); | 
| controller().LoadURL( | 
|  |