Bug 1368102: Part 5 - Move static content script matching into C++. r=mixedpuppy,zombie

MozReview-Commit-ID: Co04MoscqMx
This commit is contained in:
Kris Maglione
2017-06-04 15:38:11 -07:00
parent 861919618a
commit c04c15bd76
12 changed files with 277 additions and 139 deletions

View File

@@ -48,6 +48,14 @@ public:
uint64_t FrameID() const;
nsPIDOMWindowOuter* GetWindow() const
{
if (mObj.is<Window>()) {
return mObj.as<Window>();
}
return nullptr;
}
private:
void SetURL(const URLInfo& aURL);