summaryrefslogtreecommitdiffstats
path: root/cc/resources/texture_mailbox.h
diff options
context:
space:
mode:
Diffstat (limited to 'cc/resources/texture_mailbox.h')
-rw-r--r--cc/resources/texture_mailbox.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cc/resources/texture_mailbox.h b/cc/resources/texture_mailbox.h
index 47e71ac..9fc0fb8 100644
--- a/cc/resources/texture_mailbox.h
+++ b/cc/resources/texture_mailbox.h
@@ -26,7 +26,7 @@ class CC_EXPORT TextureMailbox {
uint32 target,
uint32 sync_point,
const gfx::Size& size_in_pixels,
- bool allow_overlay);
+ bool is_overlay_candidate);
TextureMailbox(SharedBitmap* shared_bitmap, const gfx::Size& size_in_pixels);
~TextureMailbox();
@@ -45,7 +45,7 @@ class CC_EXPORT TextureMailbox {
mailbox_holder_.sync_point = sync_point;
}
- bool allow_overlay() const { return allow_overlay_; }
+ bool is_overlay_candidate() const { return is_overlay_candidate_; }
bool nearest_neighbor() const { return nearest_neighbor_; }
void set_nearest_neighbor(bool nearest_neighbor) {
nearest_neighbor_ = nearest_neighbor;
@@ -61,7 +61,7 @@ class CC_EXPORT TextureMailbox {
gpu::MailboxHolder mailbox_holder_;
SharedBitmap* shared_bitmap_;
gfx::Size size_in_pixels_;
- bool allow_overlay_;
+ bool is_overlay_candidate_;
bool nearest_neighbor_;
};