1 // Copyright 2024 The Chromium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef NET_COOKIES_COOKIE_SWITCHES_H_ 6 #define NET_COOKIES_COOKIE_SWITCHES_H_ 7 8 #include "net/base/net_export.h" 9 10 namespace net { 11 12 // This command line switch provides a means to disable partitioned cookies in 13 // WebView. WebView cannot disable partitioned cookies using a base::Feature 14 // since some apps query the cookie store before Chromium has initialized. 15 NET_EXPORT extern const char kDisablePartitionedCookiesSwitch[]; 16 17 } // namespace net 18 19 #endif // NET_COOKIES_COOKIE_SWITCHES_H_ 20