linux: Set WM_CLASS for devtools window

This commit is contained in:
Cheng Zhao 2014-11-24 16:04:41 +08:00
parent 172c55d194
commit cd5007cfa1
3 changed files with 13 additions and 1 deletions

View file

@ -720,6 +720,14 @@ gfx::ImageSkia NativeWindowViews::GetDevToolsWindowIcon() {
return GetWindowAppIcon();
}
#if defined(USE_X11)
void NativeWindowViews::GetDevToolsWindowWMClass(
std::string* name, std::string* class_name) {
*class_name = Browser::Get()->GetName();
*name = base::StringToLowerASCII(*class_name);
}
#endif
void NativeWindowViews::HandleMouseDown() {
// Hide menu bar when web view is clicked.
if (menu_bar_autohide_ && menu_bar_visible_)