diff --git a/DEPS b/DEPS
index 8e215328..f07ce0dd 100644
--- a/DEPS
+++ b/DEPS
@@ -308,7 +308,7 @@
   },
 
   'src/third_party/depot_tools':
-    Var('chromium_git') + '/chromium/tools/depot_tools.git' + '@' + '8762632eb7250063ebc4f4d8b3acd4ff16780abd',
+    Var('chromium_git') + '/chromium/tools/depot_tools.git' + '@' + 'ddfead3483f2c1b49419de2b9f561cb32763f2b3',
 
   # DevTools node modules. Used on Linux buildbots only.
   'src/third_party/devtools-node-modules': {
diff --git a/base/numerics/README.md b/base/numerics/README.md
index 5d7df89..896b124 100644
--- a/base/numerics/README.md
+++ b/base/numerics/README.md
@@ -64,7 +64,7 @@
 
 ```cpp
 // Throw a compiler error if byte_value is changed to an out-of-range-type.
-int int_value = saturated_cast<int>(byte_value);
+int int_value = strict_cast<int>(byte_value);
 ```
 
 You can also enforce these compile-time restrictions on function parameters by