summaryrefslogtreecommitdiffstats
path: root/extensions/browser/sandboxed_unpacker.cc
diff options
context:
space:
mode:
authortzik <tzik@chromium.org>2016-03-08 16:51:45 -0800
committerCommit bot <commit-bot@chromium.org>2016-03-09 00:52:59 +0000
commitb2f765b6545e69fa91c275bd76cc7386b29892de (patch)
treee0e9a90a5aa98fce61cdbe68986a88a048be2e6e /extensions/browser/sandboxed_unpacker.cc
parent1e43e0d8e6dc2ec7c73a2587d21c079663e89159 (diff)
downloadchromium_src-b2f765b6545e69fa91c275bd76cc7386b29892de.zip
chromium_src-b2f765b6545e69fa91c275bd76cc7386b29892de.tar.gz
chromium_src-b2f765b6545e69fa91c275bd76cc7386b29892de.tar.bz2
Replace base::Tuple in //extensions with std::tuple
BUG=554987 Review URL: https://codereview.chromium.org/1773593004 Cr-Commit-Position: refs/heads/master@{#380001}
Diffstat (limited to 'extensions/browser/sandboxed_unpacker.cc')
-rw-r--r--extensions/browser/sandboxed_unpacker.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/extensions/browser/sandboxed_unpacker.cc b/extensions/browser/sandboxed_unpacker.cc
index 4652225..ab84c2a 100644
--- a/extensions/browser/sandboxed_unpacker.cc
+++ b/extensions/browser/sandboxed_unpacker.cc
@@ -8,6 +8,7 @@
#include <stdint.h>
#include <set>
+#include <tuple>
#include "base/bind.h"
#include "base/command_line.h"
@@ -775,8 +776,8 @@ bool SandboxedUnpacker::RewriteImageFiles(SkBitmap* install_icon) {
return false;
}
- const SkBitmap& image = base::get<0>(images[i]);
- base::FilePath path_suffix = base::get<1>(images[i]);
+ const SkBitmap& image = std::get<0>(images[i]);
+ base::FilePath path_suffix = std::get<1>(images[i]);
if (path_suffix.MaybeAsASCII() == install_icon_path)
*install_icon = image;