Bug 1151694 - Part 2 - imgTools should be inside mozilla::image namespace. r=bbirtles

--HG--
extra : rebase_source : c4b20c6f962403d863842dcbc297e9cdc724cb80
This commit is contained in:
Hiroyuki Ikezoe 2015-09-03 23:00:00 +02:00
Родитель e66cf160a7
Коммит a869b25f81
2 изменённых файлов: 12 добавлений и 2 удалений

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

@ -25,10 +25,10 @@
#include "imgIScriptedNotificationObserver.h"
#include "gfxPlatform.h"
using namespace mozilla;
using namespace mozilla::image;
using namespace mozilla::gfx;
namespace mozilla {
namespace image {
/* ========== imgITools implementation ========== */
@ -349,3 +349,6 @@ imgTools::GetImgCacheForDocument(nsIDOMDocument* aDoc, imgICache** aCache)
NS_ENSURE_SUCCESS(rv, rv);
return CallQueryInterface(loader, aCache);
}
} // namespace image
} // namespace mozilla

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

@ -17,6 +17,9 @@
{0xbd, 0xef, 0x2c, 0x7a, 0xe2, 0x49, 0x96, 0x7a} \
}
namespace mozilla {
namespace image {
class imgTools final : public imgITools
{
public:
@ -28,4 +31,8 @@ public:
private:
virtual ~imgTools();
};
} // namespace image
} // namespace mozilla
#endif // mozilla_image_imgITools_h