| Index: content/browser/loader/reload_cache_control_browsertest.cc
|
| diff --git a/content/browser/loader/reload_cache_control_browsertest.cc b/content/browser/loader/reload_cache_control_browsertest.cc
|
| index 8999d37b1997a123f61b2b0a9ce72ad5832243b3..98352d50194b0eb517848ae37fafed62e3577cd3 100644
|
| --- a/content/browser/loader/reload_cache_control_browsertest.cc
|
| +++ b/content/browser/loader/reload_cache_control_browsertest.cc
|
| @@ -39,15 +39,15 @@ struct RequestLog {
|
|
|
| class ReloadCacheControlBrowserTest : public ContentBrowserTest {
|
| protected:
|
| - ReloadCacheControlBrowserTest() = default;
|
| - ~ReloadCacheControlBrowserTest() override = default;
|
| -
|
| - void SetUpOnMainThread() override {
|
| + ReloadCacheControlBrowserTest() {
|
| // TODO(toyoshim): Tests in this file depend on current reload behavior,
|
| // and should be modified when we enable the new reload behavior.
|
| scoped_feature_list_.InitAndDisableFeature(
|
| features::kNonValidatingReloadOnNormalReload);
|
| + }
|
| + ~ReloadCacheControlBrowserTest() override = default;
|
|
|
| + void SetUpOnMainThread() override {
|
| SetUpTestServerOnMainThread();
|
| }
|
|
|
| @@ -85,13 +85,13 @@ class ReloadCacheControlBrowserTest : public ContentBrowserTest {
|
| class ReloadCacheControlWithAnExperimentBrowserTest
|
| : public ReloadCacheControlBrowserTest {
|
| protected:
|
| - ReloadCacheControlWithAnExperimentBrowserTest() = default;
|
| - ~ReloadCacheControlWithAnExperimentBrowserTest() override = default;
|
| -
|
| - void SetUpOnMainThread() override {
|
| + ReloadCacheControlWithAnExperimentBrowserTest() {
|
| scoped_feature_list_.InitAndEnableFeature(
|
| features::kNonValidatingReloadOnNormalReload);
|
| + }
|
| + ~ReloadCacheControlWithAnExperimentBrowserTest() override = default;
|
|
|
| + void SetUpOnMainThread() override {
|
| SetUpTestServerOnMainThread();
|
| }
|
|
|
|
|