Rename IsDevToolsOpened to IsDevToolsViewShowing.

This commit is contained in:
Cheng Zhao 2013-12-09 04:34:44 -08:00
parent 7a5415a3b7
commit b080e5c52d
10 changed files with 11 additions and 11 deletions

View file

@ -57,7 +57,7 @@ void InspectableWebContentsViewWin::CloseDevTools() {
SendMessage(devtools_window_->hwnd(), WM_CLOSE, 0, 0);
}
bool InspectableWebContentsViewWin::IsDevToolsOpened() {
bool InspectableWebContentsViewWin::IsDevToolsViewShowing() {
return devtools_window_;
}

View file

@ -20,7 +20,7 @@ class InspectableWebContentsViewWin : public InspectableWebContentsView {
virtual gfx::NativeView GetNativeView() const OVERRIDE;
virtual void ShowDevTools() OVERRIDE;
virtual void CloseDevTools() OVERRIDE;
virtual bool IsDevToolsOpened() OVERRIDE;
virtual bool IsDevToolsViewShowing() OVERRIDE;
virtual bool SetDockSide(const std::string& side) OVERRIDE;
InspectableWebContentsImpl* inspectable_web_contents() {