Bug 658087 - Remove printfs in TabChild. r=smaug

This commit is contained in:
Tom Schuster 2013-08-22 15:52:07 -04:00
Родитель 0bb2814da0
Коммит 6e43f91970
1 изменённых файлов: 0 добавлений и 4 удалений

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

@ -299,7 +299,6 @@ TabChild::TabChild(ContentChild* aManager, const TabContext& aContext, uint32_t
, mOrientation(eScreenOrientation_PortraitPrimary)
, mUpdateHitRegion(false)
{
printf("creating %d!\n", NS_IsMainThread());
}
// Get the DOMWindowUtils for the window corresponding to the given document.
@ -1283,7 +1282,6 @@ TabChild::IsRootContentDocument()
bool
TabChild::RecvLoadURL(const nsCString& uri)
{
printf("loading %s, %d\n", uri.get(), NS_IsMainThread());
SetProcessNameToAppName();
nsresult rv = mWebNav->LoadURI(NS_ConvertUTF8toUTF16(uri).get(),
@ -1460,8 +1458,6 @@ TabChild::RecvShow(const nsIntSize& size)
return true;
}
printf("[TabChild] SHOW (w,h)= (%d, %d)\n", size.width, size.height);
nsCOMPtr<nsIBaseWindow> baseWindow = do_QueryInterface(mWebNav);
if (!baseWindow) {
NS_ERROR("mWebNav doesn't QI to nsIBaseWindow");