Bug 1118609 - Mark virtual overridden functions as MOZ_OVERRIDE in dom/storage; r=baku

This commit is contained in:
Ehsan Akhgari 2015-01-06 23:51:13 -05:00
Родитель f7f7a319f9
Коммит 881f4d3f00
3 изменённых файлов: 13 добавлений и 13 удалений

Просмотреть файл

@ -247,7 +247,7 @@ class DOMStorageCacheHolder : public nsITimerCallback
NS_DECL_ISUPPORTS
NS_IMETHODIMP
Notify(nsITimer* aTimer)
Notify(nsITimer* aTimer) MOZ_OVERRIDE
{
mCache = nullptr;
return NS_OK;

Просмотреть файл

@ -174,19 +174,19 @@ public:
private:
// IPC
virtual void ActorDestroy(ActorDestroyReason aWhy) MOZ_OVERRIDE;
bool RecvAsyncPreload(const nsCString& aScope, const bool& aPriority);
bool RecvAsyncPreload(const nsCString& aScope, const bool& aPriority) MOZ_OVERRIDE;
bool RecvPreload(const nsCString& aScope, const uint32_t& aAlreadyLoadedCount,
InfallibleTArray<nsString>* aKeys, InfallibleTArray<nsString>* aValues,
nsresult* aRv);
bool RecvAsyncGetUsage(const nsCString& aScope);
bool RecvAsyncAddItem(const nsCString& aScope, const nsString& aKey, const nsString& aValue);
bool RecvAsyncUpdateItem(const nsCString& aScope, const nsString& aKey, const nsString& aValue);
bool RecvAsyncRemoveItem(const nsCString& aScope, const nsString& aKey);
bool RecvAsyncClear(const nsCString& aScope);
bool RecvAsyncFlush();
nsresult* aRv) MOZ_OVERRIDE;
bool RecvAsyncGetUsage(const nsCString& aScope) MOZ_OVERRIDE;
bool RecvAsyncAddItem(const nsCString& aScope, const nsString& aKey, const nsString& aValue) MOZ_OVERRIDE;
bool RecvAsyncUpdateItem(const nsCString& aScope, const nsString& aKey, const nsString& aValue) MOZ_OVERRIDE;
bool RecvAsyncRemoveItem(const nsCString& aScope, const nsString& aKey) MOZ_OVERRIDE;
bool RecvAsyncClear(const nsCString& aScope) MOZ_OVERRIDE;
bool RecvAsyncFlush() MOZ_OVERRIDE;
// DOMStorageObserverSink
virtual nsresult Observe(const char* aTopic, const nsACString& aScopePrefix);
virtual nsresult Observe(const char* aTopic, const nsACString& aScopePrefix) MOZ_OVERRIDE;
private:
CacheParentBridge* NewCache(const nsACString& aScope);
@ -194,7 +194,7 @@ private:
ThreadSafeAutoRefCnt mRefCnt;
NS_DECL_OWNINGTHREAD
// True when IPC channel is open and Send*() methods are OK to use.
// True when IPC channel is open and Send*() methods are OK to use.
bool mIPCOpen;
};

Просмотреть файл

@ -46,7 +46,7 @@ protected:
private:
// DOMStorageObserverSink, handler to various chrome clearing notification
virtual nsresult Observe(const char* aTopic, const nsACString& aScopePrefix);
virtual nsresult Observe(const char* aTopic, const nsACString& aScopePrefix) MOZ_OVERRIDE;
// Since nsTHashtable doesn't like multiple inheritance, we have to aggregate
// DOMStorageCache into the entry.