Skip to content
This repository has been archived by the owner on Aug 4, 2022. It is now read-only.

Commit

Permalink
Bug 1428258 - Stop using GetNativePath in chrome/. r=mayhemer
Browse files Browse the repository at this point in the history
MozReview-Commit-ID: EhsuLxIA1zj
  • Loading branch information
vyv03354 committed Dec 17, 2017
1 parent f1e3649 commit 8739e85
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions chrome/nsChromeProtocolHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,8 @@ nsChromeProtocolHandler::NewChannel2(nsIURI* aURI,
bool exists = false;
file->Exists(&exists);
if (!exists) {
nsAutoCString path;
file->GetNativePath(path);
printf("Chrome file doesn't exist: %s\n", path.get());
printf("Chrome file doesn't exist: %s\n",
file->HumanReadablePath().get());
}
}
#endif
Expand Down

0 comments on commit 8739e85

Please sign in to comment.