HomeSort by relevance Sort by last modified time
    Searched defs:GetDeviceScale (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/ppapi/cpp/dev/
view_dev.cc 20 float ViewDev::GetDeviceScale() const {
23 return get_interface<PPB_View_Dev>()->GetDeviceScale(pp_resource());
  /external/chromium_org/ppapi/c/dev/
ppb_view_dev.h 30 * GetDeviceScale returns the scale factor between device pixels and DIPs
44 float (*GetDeviceScale)(PP_Resource resource);
  /external/chromium_org/ppapi/thunk/
ppb_view_dev_thunk.cc 19 float GetDeviceScale(PP_Resource resource) {
20 VLOG(4) << "PPB_View_Dev::GetDeviceScale()";
24 return enter.object()->GetDeviceScale();
36 &GetDeviceScale,
ppb_view_thunk.cc 65 float GetDeviceScale(PP_Resource resource) {
66 VLOG(4) << "PPB_View::GetDeviceScale()";
70 return enter.object()->GetDeviceScale();
105 &GetDeviceScale,
116 &GetDeviceScale,
  /external/chromium_org/ppapi/cpp/
view.cc 105 float View::GetDeviceScale() const {
107 return get_interface<PPB_View_1_2>()->GetDeviceScale(pp_resource());
109 return get_interface<PPB_View_1_1>()->GetDeviceScale(pp_resource());
  /external/chromium_org/ppapi/c/
ppb_view.h 173 * GetDeviceScale returns the scale factor between device pixels and Density
188 float (*GetDeviceScale)(PP_Resource resource);
235 float (*GetDeviceScale)(PP_Resource resource);
  /external/chromium_org/ppapi/shared_impl/
ppb_view_shared.cc 80 float PPB_View_Shared::GetDeviceScale() const { return data_.device_scale; }

Completed in 1081 milliseconds