1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "ppapi/cpp/dev/view_dev.h"
7 #include "ppapi/c/dev/ppb_view_dev.h"
8 #include "ppapi/cpp/module_impl.h"
14 template <> const char* interface_name
<PPB_View_Dev
>() {
15 return PPB_VIEW_DEV_INTERFACE
;
20 float ViewDev::GetDeviceScale() const {
21 if (!has_interface
<PPB_View_Dev
>())
23 return get_interface
<PPB_View_Dev
>()->GetDeviceScale(pp_resource());
26 float ViewDev::GetCSSScale() const {
27 if (!has_interface
<PPB_View_Dev
>())
29 return get_interface
<PPB_View_Dev
>()->GetCSSScale(pp_resource());