| Index: chrome/installer/mini_installer/decompress.h
|
| diff --git a/chrome/installer/mini_installer/decompress.h b/chrome/installer/mini_installer/decompress.h
|
| index 5e11af8d5a441a408c46820a8ae25c32cb3cbb38..c92d369d3fe4414a8d2baa548b4451252b0dfe2f 100644
|
| --- a/chrome/installer/mini_installer/decompress.h
|
| +++ b/chrome/installer/mini_installer/decompress.h
|
| @@ -4,6 +4,11 @@
|
|
|
| #ifndef CHROME_INSTALLER_MINI_INSTALLER_DECOMPRESS_H_
|
| #define CHROME_INSTALLER_MINI_INSTALLER_DECOMPRESS_H_
|
| +
|
| +// arraysize borrowed from basictypes.h
|
| +template <typename T, size_t N>
|
| +char (&ArraySizeHelper(T (&array)[N]))[N];
|
| +#define arraysize(array) (sizeof(::ArraySizeHelper(array)))
|
|
|
| namespace mini_installer {
|
|
|
|
|