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

Unified Diff: cc/LayerChromium.h

Issue 11035020: Renamed LayerChromium::opaque to LayerChromium::contentsOpaque. Having both opaque and opacity on t… (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 2 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: cc/LayerChromium.h
diff --git a/cc/LayerChromium.h b/cc/LayerChromium.h
index fc7a67398729c4421c5db3cd17869a2b327b3850..4940bcded6959974bd896c2b30e35695da71bd8b 100644
--- a/cc/LayerChromium.h
+++ b/cc/LayerChromium.h
@@ -106,8 +106,8 @@ public:
void setBackgroundFilters(const WebKit::WebFilterOperations&);
const WebKit::WebFilterOperations& backgroundFilters() const { return m_backgroundFilters; }
- virtual void setOpaque(bool);
- bool opaque() const { return m_opaque; }
+ virtual void setContentsOpaque(bool);
+ bool contentsOpaque() const { return m_contentsOpaque; }
void setPosition(const FloatPoint&);
FloatPoint position() const { return m_position; }
@@ -344,7 +344,7 @@ private:
bool m_fixedToContainerLayer;
bool m_isDrawable;
bool m_masksToBounds;
- bool m_opaque;
+ bool m_contentsOpaque;
bool m_doubleSided;
bool m_useLCDText;
bool m_preserves3D;

Powered by Google App Engine
This is Rietveld 408576698