| Index: chrome/installer/util/installer_state.cc
|
| diff --git a/chrome/installer/util/installer_state.cc b/chrome/installer/util/installer_state.cc
|
| index c767a3c9481b665a29b4488c55ef67ff659a5f5c..d2042776d45ac9b42f87af809146f322ac37e5a4 100644
|
| --- a/chrome/installer/util/installer_state.cc
|
| +++ b/chrome/installer/util/installer_state.cc
|
| @@ -620,10 +620,10 @@
|
| };
|
| DCHECK_NE(file_bits, 0U);
|
| DCHECK_LT(file_bits, 1U << NUM_BINARIES);
|
| - static_assert(CHROME_DLL == 1, "no, you're out of order");
|
| - static_assert(CHROME_FRAME_DLL == 2, "no, you're out of order");
|
| - static_assert(CHROME_FRAME_HELPER_DLL == 4, "no, you're out of order");
|
| - static_assert(CHROME_FRAME_HELPER_EXE == 8, "no, you're out of order");
|
| + COMPILE_ASSERT(CHROME_DLL == 1, no_youre_out_of_order);
|
| + COMPILE_ASSERT(CHROME_FRAME_DLL == 2, no_youre_out_of_order);
|
| + COMPILE_ASSERT(CHROME_FRAME_HELPER_DLL == 4, no_youre_out_of_order);
|
| + COMPILE_ASSERT(CHROME_FRAME_HELPER_EXE == 8, no_youre_out_of_order);
|
|
|
| // Check only for the current version (i.e., the version we are upgrading
|
| // _from_). Later versions from pending in-use updates need not be checked
|
|
|