Bug 912974 - Add two missing include guards. r=bjacob

This commit is contained in:
Benoit Jacob 2013-09-10 21:10:47 -04:00
parent bbca1ed7e1
commit 4422726329
2 changed files with 11 additions and 1 deletions

View File

@ -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 GFXTEXTURESREPORTER_H_
#define GFXTEXTURESREPORTER_H_
#include "nsIMemoryReporter.h"
#include "GLTypes.h"
@ -45,4 +48,6 @@ private:
};
}
}
}
#endif // GFXTEXTURESREPORTER_H_

View File

@ -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 TEXTUREGARBAGEBIN_H_
#define TEXTUREGARBAGEBIN_H_
#include <stack>
#include "mozilla/Mutex.h"
@ -35,3 +38,5 @@ public:
}
}
#endif // TEXTUREGARBAGEBIN_H_