diff options
author | tsepez@chromium.org <tsepez@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-11 03:03:54 +0000 |
---|---|---|
committer | tsepez@chromium.org <tsepez@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-11 03:03:54 +0000 |
commit | 2217aa2b1e610835e272ba3ee3d67737917803da (patch) | |
tree | bf3b72f3586337507730e86f9264f606268a64ad /net/base/load_flags_list.h | |
parent | ea60d79c272fd2296aa34b1ac6555a45eabec03e (diff) | |
download | chromium_src-2217aa2b1e610835e272ba3ee3d67737917803da.zip chromium_src-2217aa2b1e610835e272ba3ee3d67737917803da.tar.gz chromium_src-2217aa2b1e610835e272ba3ee3d67737917803da.tar.bz2 |
Permit NTLM token on cross-domain images.
The change in http://crrev.com/209100 is too general; this makes
the effects specific to embedded identities.
BUG=303046
R=cbentzel@chromium.org
Review URL: https://codereview.chromium.org/26745002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@228087 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base/load_flags_list.h')
-rw-r--r-- | net/base/load_flags_list.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net/base/load_flags_list.h b/net/base/load_flags_list.h index 968c122..2d00488 100644 --- a/net/base/load_flags_list.h +++ b/net/base/load_flags_list.h @@ -119,3 +119,8 @@ LOAD_FLAG(DO_NOT_PROMPT_FOR_LOGIN, 1 << 26) // explicit user action. This can be used as a hint to treat the // request with higher priority. LOAD_FLAG(MAYBE_USER_GESTURE, 1 << 27) + +// Indicates that the username:password portion of the URL should not +// be honored, but that other forms of authority may be used. +LOAD_FLAG(DO_NOT_USE_EMBEDDED_IDENTITY, 1 << 28) + |