summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--chromium/content/common/pseudonymization_salt.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/content/common/pseudonymization_salt.cc b/chromium/content/common/pseudonymization_salt.cc
index d1b30bc544a..5dc3b676cd0 100644
--- a/chromium/content/common/pseudonymization_salt.cc
+++ b/chromium/content/common/pseudonymization_salt.cc
@@ -12,7 +12,7 @@
#if DCHECK_IS_ON()
#include "base/command_line.h"
-#include "sandbox/policy/switches.h"
+#include "content/public/common/content_switches.h"
#endif
namespace content {
@@ -46,7 +46,7 @@ uint32_t GetPseudonymizationSalt() {
// Only the Browser process needs to initialize the `salt` on demand.
// Other processes (identified via the process-type arg) should
// receive the salt from their parent processes.
- DCHECK(!command_line.HasSwitch(switches::kProcessType));
+ DCHECK(!base::CommandLine::ForCurrentProcess()->HasSwitch(switches::kProcessType));
#endif
salt = InitializeSalt();
}