Add content_switches include to files that need it.
This patch is from grepping for any identifier in content_switches.h and adds
an include for it in those files.
The reason for this is to be able to remove the include of content_switches.h
from chrome_switches.h. That needs to be removed because the minimal chrome
constants target that chrome_switches is part of technically doesn't depend on
content. I want to be able to turn on GN header checking for the Chrome Windows
installer targets so we can keep the dependencies under control (these targets
try to be as small as possible).
[email protected]
Review URL: https://codereview.chromium.org/1395263002
Cr-Commit-Position: refs/heads/master@{#353430}
diff --git a/chrome/browser/browser_process_impl.cc b/chrome/browser/browser_process_impl.cc
index 6615833..876bc45 100644
--- a/chrome/browser/browser_process_impl.cc
+++ b/chrome/browser/browser_process_impl.cc
@@ -94,6 +94,7 @@
#include "content/public/browser/resource_dispatcher_host.h"
#include "content/public/browser/service_worker_context.h"
#include "content/public/browser/storage_partition.h"
+#include "content/public/common/content_switches.h"
#include "extensions/common/constants.h"
#include "net/socket/client_socket_pool_manager.h"
#include "net/url_request/url_request_context_getter.h"