Skip to content
Snippets Groups Projects
Commit 34ab9f65 authored by Ehsan Akhgari's avatar Ehsan Akhgari
Browse files

Bug 939656 - Fix the GfxInfoBase::OperatingSystemVersion overrides; r=bjacob

parent 290fd5ae
No related branches found
No related tags found
No related merge requests found
......@@ -64,7 +64,7 @@ public:
NS_DECL_NSIGFXINFODEBUG
#endif
virtual uint32_t OperatingSystemVersion();
virtual uint32_t OperatingSystemVersion() MOZ_OVERRIDE;
virtual void InitializeGLStrings(gl::GLContext* gl);
......
......@@ -153,7 +153,7 @@ GfxInfo::GetGfxDriverInfo()
return *mDriverInfo;
}
uint32_t GfxInfo::OperatingSystemVersion() const
uint32_t GfxInfo::OperatingSystemVersion()
{
return 0;
}
......
......@@ -44,7 +44,7 @@ public:
using GfxInfoBase::GetFeatureSuggestedDriverVersion;
using GfxInfoBase::GetWebGLParameter;
virtual uint32_t OperatingSystemVersion() const;
virtual uint32_t OperatingSystemVersion() MOZ_OVERRIDE;
#ifdef DEBUG
NS_DECL_NSIGFXINFODEBUG
......
......@@ -45,7 +45,7 @@ public:
virtual nsresult Init();
virtual uint32_t OperatingSystemVersion() const { return mWindowsVersion; }
virtual uint32_t OperatingSystemVersion() MOZ_OVERRIDE { return mWindowsVersion; }
#ifdef DEBUG
NS_DECL_ISUPPORTS_INHERITED
......
......@@ -19,6 +19,7 @@
#include "nsIGfxInfoDebug.h"
#include "mozilla/Mutex.h"
#include "js/Value.h"
#include "mozilla/Attributes.h"
namespace mozilla {
namespace widget {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment