| Index: apps/app_window.h
|
| diff --git a/apps/app_window.h b/apps/app_window.h
|
| index 151e8802f70d70c58f5a35bb84bb67b8f7f8668a..0f84acc2bc32841020074d183fe8b5cd54496e61 100644
|
| --- a/apps/app_window.h
|
| +++ b/apps/app_window.h
|
| @@ -152,7 +152,7 @@ class AppWindow : public content::NotificationObserver,
|
| bool has_frame_color;
|
| SkColor active_frame_color;
|
| SkColor inactive_frame_color;
|
| - bool transparent_background; // Only supported on ash.
|
| + bool alpha_enabled;
|
|
|
| // The initial content/inner bounds specification (excluding any window
|
| // decorations).
|
| @@ -354,10 +354,8 @@ 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_;
|
| - }
|
| + // Whether the app window wants to be alpha enabled.
|
| + bool requested_alpha_enabled() const { return requested_alpha_enabled_; }
|
|
|
| protected:
|
| virtual ~AppWindow();
|
| @@ -560,8 +558,8 @@ class AppWindow : public content::NotificationObserver,
|
| // taskbar.
|
| bool cached_always_on_top_;
|
|
|
| - // Whether |transparent_background| was set in the CreateParams.
|
| - bool requested_transparent_background_;
|
| + // Whether |alpha_enabled| was set in the CreateParams.
|
| + bool requested_alpha_enabled_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(AppWindow);
|
| };
|
|
|