Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(482)

Unified Diff: ui/compositor/layer.h

Issue 10201014: Implement High Contrast mode for Chrome OS (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Code review fix Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/compositor/layer.h
diff --git a/ui/compositor/layer.h b/ui/compositor/layer.h
index a0a6cc1a5535c57f851db8fb4eeacca7583ec26a..5b7ac9c40eeba03036106233dc88e4137968539d 100644
--- a/ui/compositor/layer.h
+++ b/ui/compositor/layer.h
@@ -134,6 +134,10 @@ class COMPOSITOR_EXPORT Layer :
int background_blur() const { return background_blur_radius_; }
void SetBackgroundBlur(int blur_radius);
+ // Invert the layer.
+ bool invert() const { return invert_; }
+ void SetInvert(bool invert);
sky 2012/05/16 21:07:48 SetInverted
Zachary Kuznia 2012/05/17 08:25:25 Done.
+
// Return the target opacity if animator is running, or the current opacity
// otherwise.
float GetTargetOpacity() const;
@@ -288,6 +292,7 @@ class COMPOSITOR_EXPORT Layer :
float opacity_;
int background_blur_radius_;
+ bool invert_;
sky 2012/05/16 21:07:48 inverted
Zachary Kuznia 2012/05/17 08:25:25 Done.
std::string name_;

Powered by Google App Engine
This is Rietveld 408576698