Index: apps/app_window.h |
diff --git a/apps/app_window.h b/apps/app_window.h |
index f2e0e98d815be3c42a10bc939588a7e3cf0d1307..216ee3c3ec609491d1d824b85242980c194650d8 100644 |
--- a/apps/app_window.h |
+++ b/apps/app_window.h |
@@ -362,6 +362,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(); |
@@ -558,6 +563,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); |
}; |