Bug 1076417 - nsNativeThemeGTK.h is missing an include guard. r=roc

--HG--
extra : rebase_source : 7f24f20b6602cf5b044fac87ccc1a72cc6d7f934
This commit is contained in:
Eric Rahm 2014-10-01 19:01:21 -07:00
parent 986bdc46b4
commit b305f59a24

View File

@ -3,6 +3,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 _GTK_NSNATIVETHEMEGTK_H_
#define _GTK_NSNATIVETHEMEGTK_H_
#include "nsITheme.h"
#include "nsCOMPtr.h"
#include "nsIAtom.h"
@ -80,3 +83,5 @@ private:
uint8_t mSafeWidgetStates[1024]; // 256 widgets * 32 bits per widget
static const char* sDisabledEngines[];
};
#endif