Skip to content

Commit

Permalink
nw2: Fix windows icon
Browse files Browse the repository at this point in the history
  • Loading branch information
rogerwang committed Nov 28, 2019
1 parent 179504f commit 66f172f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chrome/browser/ui/browser.h
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ class Browser : public TabStripModelObserver,
// |app_name_| is non-empty. This includes TYPE_APP and TYPE_DEVTOOLS.
// Existing callers should change to use the appropriate is_type_* functions.
bool deprecated_is_app() const {
return type_ == TYPE_APP || type_ == TYPE_DEVTOOLS;
return type_ == TYPE_APP || type_ == TYPE_DEVTOOLS || type_ == TYPE_POPUP;
}

// True when the mouse cursor is locked.
Expand Down

0 comments on commit 66f172f

Please sign in to comment.