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