Index: ash/wm/workspace/system_background_controller.h |
=================================================================== |
--- ash/wm/workspace/system_background_controller.h (revision 160653) |
+++ ash/wm/workspace/system_background_controller.h (working copy) |
@@ -8,6 +8,8 @@ |
#include "ash/ash_export.h" |
#include "base/basictypes.h" |
+typedef unsigned int SkColor; |
+ |
namespace aura { |
class RootWindow; |
}; |
@@ -20,9 +22,12 @@ |
// level background. |
class ASH_EXPORT SystemBackgroundController { |
public: |
- explicit SystemBackgroundController(aura::RootWindow* root); |
+ SystemBackgroundController(aura::RootWindow* root, SkColor color); |
~SystemBackgroundController(); |
+ // Changes the background color. |
+ void SetColor(SkColor color); |
+ |
private: |
class View; |