#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "content/public/browser/browser_context.h"
#include "content/public/browser/storage_partition.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/browser_test_utils.h"
#include "content/public/test/content_browser_test.h"
#include "url/gurl.h"
namespace content {
class ExplicitlyAllowedPortsSwitchBrowserTest : public InProcessBrowserTest { … };
IN_PROC_BROWSER_TEST_F(ExplicitlyAllowedPortsSwitchBrowserTest,
Port79DefaultBlocked) { … }
class ExplicitlyAllowPort79BrowserTest
: public ExplicitlyAllowedPortsSwitchBrowserTest { … };
IN_PROC_BROWSER_TEST_F(ExplicitlyAllowPort79BrowserTest, Load) { … }
}