| Index: ppapi/shared_impl/ppb_view_shared.cc
|
| diff --git a/ppapi/shared_impl/ppb_view_shared.cc b/ppapi/shared_impl/ppb_view_shared.cc
|
| index 1e024a69000325edc80f9653ae4872a0d5d3bebb..54659a364539094e988eb59a03c94a52d164e15b 100644
|
| --- a/ppapi/shared_impl/ppb_view_shared.cc
|
| +++ b/ppapi/shared_impl/ppb_view_shared.cc
|
| @@ -24,7 +24,9 @@ bool ViewData::Equals(const ViewData& other) const {
|
| clip_rect.point.x == other.clip_rect.point.x &&
|
| clip_rect.point.y == other.clip_rect.point.y &&
|
| clip_rect.size.width == other.clip_rect.size.width &&
|
| - clip_rect.size.height == other.clip_rect.size.height;
|
| + clip_rect.size.height == other.clip_rect.size.height &&
|
| + device_scale == other.device_scale &&
|
| + css_scale == other.css_scale;
|
| }
|
|
|
| PPB_View_Shared::PPB_View_Shared(ResourceObjectType type,
|
|
|