From 1cd4a8e4ce89289b6b8065d2fa3767d9beb8d6c1 Mon Sep 17 00:00:00 2001 From: Ehsan Akhgari Date: Tue, 3 Dec 2013 08:20:53 -0500 Subject: [PATCH] Bug 945589 - Add include guards to ScriptedNotificationObserver.h --- image/src/ScriptedNotificationObserver.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/image/src/ScriptedNotificationObserver.h b/image/src/ScriptedNotificationObserver.h index 3907ef89c7d5..71f236909af4 100644 --- a/image/src/ScriptedNotificationObserver.h +++ b/image/src/ScriptedNotificationObserver.h @@ -4,6 +4,9 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +#ifndef ScriptedNotificationObserver_h +#define ScriptedNotificationObserver_h + #include "imgINotificationObserver.h" #include "nsCOMPtr.h" #include "nsCycleCollectionParticipant.h" @@ -28,3 +31,5 @@ private: }; }} + +#endif