-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Crash after rebasing at interactive_ui_tests #16
Comments
Unable to find Extension* from ExtensionSet::GetByID const Extension* ExtensionSet::GetByID(const std::string& id) const { |
Wrong extension_id at const Extension* GetExtensionForUrl(Profile* profile, const GURL& url) Expected Name : extension_id Actual: Name : extension_id |
ExtensionViewHost tries to load extension but if we passes empty or invalid url, it refuses to load It looks like we have to use TestExtensionDir and load extension inside of that to generate proper extension for test. That's quite interesting that we already have content_id_ in sidebar_browsertest To follow convention in ExtensionViewHost, we should use same scheme with other extensions like popup or dialog. |
Fixed at 52812d0 |
Crashes at SidebarTest::ShowSidebar(WebContents* temp, const std::string& test_page),
Due to the null host_ in SidebarContainer.
We need to check initialization sequence of SidebarContainer and SidebarManager
The text was updated successfully, but these errors were encountered: