| Index: extensions/browser/sandboxed_unpacker.cc
|
| diff --git a/extensions/browser/sandboxed_unpacker.cc b/extensions/browser/sandboxed_unpacker.cc
|
| index de7267fab14558d20da20147af6d701056573f86..38a7cd9afec01a5c2aa402187be730e9653fac14 100644
|
| --- a/extensions/browser/sandboxed_unpacker.cc
|
| +++ b/extensions/browser/sandboxed_unpacker.cc
|
| @@ -742,8 +742,8 @@ bool SandboxedUnpacker::RewriteImageFiles(SkBitmap* install_icon) {
|
| return false;
|
| }
|
|
|
| - const SkBitmap& image = get<0>(images[i]);
|
| - base::FilePath path_suffix = get<1>(images[i]);
|
| + const SkBitmap& image = base::get<0>(images[i]);
|
| + base::FilePath path_suffix = base::get<1>(images[i]);
|
| if (path_suffix.MaybeAsASCII() == install_icon_path)
|
| *install_icon = image;
|
|
|
|
|