| Index: chrome/browser/ui/extensions/extension_message_bubble_factory.cc
|
| diff --git a/chrome/browser/ui/extensions/extension_message_bubble_factory.cc b/chrome/browser/ui/extensions/extension_message_bubble_factory.cc
|
| index ddbfadf60e28dcca2f43f6d58079547727e2420d..a9383ed6132f4c396a7b8d61db18664ac5f5f647 100644
|
| --- a/chrome/browser/ui/extensions/extension_message_bubble_factory.cc
|
| +++ b/chrome/browser/ui/extensions/extension_message_bubble_factory.cc
|
| @@ -21,6 +21,7 @@
|
| #include "chrome/browser/ui/startup/startup_browser_creator.h"
|
| #include "chrome/common/channel_info.h"
|
| #include "components/version_info/version_info.h"
|
| +#include "content/public/common/content_switches.h"
|
| #include "extensions/common/feature_switch.h"
|
|
|
| namespace {
|
| @@ -84,6 +85,12 @@ bool EnableDevModeBubble() {
|
| if (extensions::FeatureSwitch::force_dev_mode_highlighting()->IsEnabled())
|
| return true;
|
|
|
| + // The dev mode bubble breaks focus for automated tests, so don't enable it
|
| + // when the remote debugging port is open.
|
| + base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
|
| + if (command_line->HasSwitch(switches::kRemoteDebuggingPort))
|
| + return false;
|
| +
|
| #if defined(OS_WIN)
|
| if (chrome::GetChannel() >= version_info::Channel::BETA)
|
| return true;
|
|
|