| Index: chrome/browser/devtools/devtools_adb_bridge.cc
|
| diff --git a/chrome/browser/devtools/devtools_adb_bridge.cc b/chrome/browser/devtools/devtools_adb_bridge.cc
|
| index fb006f19bb5281e644fed10c1909b1d447f8deff..5fb96dca23f018e68e565a94d5c7cc50c22a30fd 100644
|
| --- a/chrome/browser/devtools/devtools_adb_bridge.cc
|
| +++ b/chrome/browser/devtools/devtools_adb_bridge.cc
|
| @@ -23,6 +23,7 @@
|
| #include "chrome/browser/devtools/devtools_window.h"
|
| #include "chrome/browser/devtools/tethering_adb_filter.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| +#include "components/devtools_remote_frontend/devtools_remote_frontend_util.h"
|
| #include "content/public/browser/browser_thread.h"
|
| #include "content/public/browser/devtools_agent_host.h"
|
| #include "content/public/browser/devtools_client_host.h"
|
| @@ -274,7 +275,8 @@ class AdbPagesCommand : public base::RefCounted<AdbPagesCommand> {
|
| socket_to_package_.clear();
|
| std::vector<std::string> entries;
|
| Tokenize(response, "\n", &entries);
|
| - const std::string channel_pattern = kDevToolsChannelPattern;
|
| + const std::string channel_pattern =
|
| + devtools_remote_frontend::GetDevToolsServerSocketSuffix();
|
| for (size_t i = 1; i < entries.size(); ++i) {
|
| std::vector<std::string> fields;
|
| Tokenize(entries[i], " ", &fields);
|
|
|