summaryrefslogtreecommitdiffstats
path: root/sandbox
diff options
context:
space:
mode:
authorscottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-09-12 22:23:20 +0000
committerscottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-09-12 22:23:20 +0000
commit9d7fcaac40bee76946876cd9064ba8eb5eacf9fe (patch)
tree64818e0261c098f9d3e44e89bb55e5ee9129bf49 /sandbox
parent49357ccbc94b3d96a124d62dc7228a905f589da9 (diff)
downloadchromium_src-9d7fcaac40bee76946876cd9064ba8eb5eacf9fe.zip
chromium_src-9d7fcaac40bee76946876cd9064ba8eb5eacf9fe.tar.gz
chromium_src-9d7fcaac40bee76946876cd9064ba8eb5eacf9fe.tar.bz2
add missing #include of <algorithm>, needed on VS2013 for std::min
TBR=jschuh@chromium.org BUG=288948 Review URL: https://chromiumcodereview.appspot.com/23618047 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@222886 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sandbox')
-rw-r--r--sandbox/win/src/process_mitigations.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/sandbox/win/src/process_mitigations.cc b/sandbox/win/src/process_mitigations.cc
index b914854..d113047 100644
--- a/sandbox/win/src/process_mitigations.cc
+++ b/sandbox/win/src/process_mitigations.cc
@@ -4,6 +4,8 @@
#include "sandbox/win/src/process_mitigations.h"
+#include <algorithm>
+
#include "base/win/windows_version.h"
#include "sandbox/win/src/nt_internals.h"
#include "sandbox/win/src/sandbox_utils.h"