Merge pull request #218 from deepak1556/devtools_extensions_load_patch
notify delegate when devtools is loaded
This commit is contained in:
commit
c860689a9b
2 changed files with 4 additions and 0 deletions
|
@ -368,6 +368,9 @@ void InspectableWebContentsImpl::LoadCompleted() {
|
||||||
// If the devtools can dock, "SetIsDocked" will be called by devtools itself.
|
// If the devtools can dock, "SetIsDocked" will be called by devtools itself.
|
||||||
if (!can_dock_)
|
if (!can_dock_)
|
||||||
SetIsDocked(DispatchCallback(), false);
|
SetIsDocked(DispatchCallback(), false);
|
||||||
|
|
||||||
|
if (view_->GetDelegate())
|
||||||
|
view_->GetDelegate()->DevToolsLoaded();
|
||||||
}
|
}
|
||||||
|
|
||||||
void InspectableWebContentsImpl::SetInspectedPageBounds(const gfx::Rect& rect) {
|
void InspectableWebContentsImpl::SetInspectedPageBounds(const gfx::Rect& rect) {
|
||||||
|
|
|
@ -12,6 +12,7 @@ class InspectableWebContentsViewDelegate {
|
||||||
virtual void DevToolsFocused() {}
|
virtual void DevToolsFocused() {}
|
||||||
virtual void DevToolsOpened() {}
|
virtual void DevToolsOpened() {}
|
||||||
virtual void DevToolsClosed() {}
|
virtual void DevToolsClosed() {}
|
||||||
|
virtual void DevToolsLoaded() {}
|
||||||
|
|
||||||
// Returns the icon of devtools window.
|
// Returns the icon of devtools window.
|
||||||
virtual gfx::ImageSkia GetDevToolsWindowIcon();
|
virtual gfx::ImageSkia GetDevToolsWindowIcon();
|
||||||
|
|
Loading…
Reference in a new issue