| Index: apps/app_window.h
|
| diff --git a/apps/app_window.h b/apps/app_window.h
|
| index 9873eedb0be7fc255e52140de2808ba12481d32d..4e9403b300eff01e536c129956a2e78c69d4db9d 100644
|
| --- a/apps/app_window.h
|
| +++ b/apps/app_window.h
|
| @@ -363,6 +363,11 @@ class AppWindow : public content::NotificationObserver,
|
| // app.
|
| void WindowEventsReady();
|
|
|
| + // Whether the app window wants a transparent background.
|
| + bool requested_transparent_background() const {
|
| + return requested_transparent_background_;
|
| + }
|
| +
|
| protected:
|
| virtual ~AppWindow();
|
|
|
| @@ -563,6 +568,9 @@ class AppWindow : public content::NotificationObserver,
|
| // taskbar.
|
| bool cached_always_on_top_;
|
|
|
| + // Whether |transparent_background| was set in the CreateParams.
|
| + bool requested_transparent_background_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(AppWindow);
|
| };
|
|
|
|
|