| Index: chrome/browser/sessions/tab_loader_unittest.cc
|
| diff --git a/chrome/browser/sessions/tab_loader_unittest.cc b/chrome/browser/sessions/tab_loader_unittest.cc
|
| index 90232bf8bf76f5688dcf0c98a469aee729619152..94849e829b8060229ada4f05ea569226e5a2b02e 100644
|
| --- a/chrome/browser/sessions/tab_loader_unittest.cc
|
| +++ b/chrome/browser/sessions/tab_loader_unittest.cc
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "chrome/browser/sessions/tab_loader.h"
|
|
|
| +#include "base/base_features.h"
|
| #include "base/memory/memory_coordinator_client_registry.h"
|
| #include "base/run_loop.h"
|
| #include "base/test/scoped_feature_list.h"
|
| @@ -12,7 +13,6 @@
|
| #include "content/public/browser/memory_coordinator_delegate.h"
|
| #include "content/public/browser/render_widget_host_view.h"
|
| #include "content/public/browser/web_contents.h"
|
| -#include "content/public/common/content_features.h"
|
| #include "content/public/test/memory_coordinator_test_utils.h"
|
| #include "content/public/test/test_browser_thread_bundle.h"
|
| #include "content/public/test/test_web_contents_factory.h"
|
| @@ -26,7 +26,8 @@ class TabLoaderTest : public testing::Test {
|
|
|
| // testing::Test:
|
| void SetUp() override {
|
| - scoped_feature_list_.InitAndEnableFeature(features::kMemoryCoordinator);
|
| + scoped_feature_list_.InitAndEnableFeature(
|
| + base::features::kMemoryCoordinator);
|
| content::SetUpMemoryCoordinatorProxyForTesting();
|
|
|
| test_web_contents_factory_.reset(new content::TestWebContentsFactory);
|
|
|