Bug 792180 - Replace NS_{UN,}LIKELY with MOZ_{UN,}LIKELY; r=ehsan

This commit is contained in:
Jacek Szpot
2012-10-26 15:32:10 +02:00
parent a710077c4c
commit 09f9b9a1c3
102 changed files with 534 additions and 452 deletions

View File

@@ -19,6 +19,7 @@
#include "nsIRandomGenerator.h"
#endif
#include "mozilla/Telemetry.h"
#include "mozilla/Likely.h"
using namespace mozilla::storage;
@@ -151,7 +152,7 @@ namespace {
}
// If something went wrong above, get out of here!
if (NS_UNLIKELY(error)) {
if (MOZ_UNLIKELY(error)) {
return false;
}