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

Unified Diff: ppapi/cpp/private/view_private.cc

Issue 10544168: Implement HiDPI support in Pepper dev interface (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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: ppapi/cpp/private/view_private.cc
diff --git a/ppapi/cpp/private/view_private.cc b/ppapi/cpp/private/view_private.cc
new file mode 100644
index 0000000000000000000000000000000000000000..d083362de64b1fe215074ea7b38cb04a18583ff0
--- /dev/null
+++ b/ppapi/cpp/private/view_private.cc
@@ -0,0 +1,40 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "ppapi/cpp/private/view_private.h"
+
+#include "ppapi/c/private/ppb_view_private.h"
+#include "ppapi/cpp/module_impl.h"
+
+namespace pp {
+
+namespace {
+
+template <> const char* interface_name<PPB_View_Private>() {
+ return PPB_VIEW_PRIVATE_INTERFACE;
+}
+
+} // namespace
+
+float ViewPrivate::GetDeviceScale() const {
+ if (has_interface<PPB_View_Private>()) {
+ float out;
+ if (PP_ToBool(get_interface<PPB_View_Private>()->GetDeviceScale(
+ pp_resource(), &out)))
+ return out;
+ }
+ return 1.0f;
+}
+
+float ViewPrivate::GetCSSScale() const {
+ if (has_interface<PPB_View_Private>()) {
+ float out;
+ if (PP_ToBool(get_interface<PPB_View_Private>()->GetCSSScale(
+ pp_resource(), &out)))
+ return out;
+ }
+ return 1.0f;
+}
+
+} // namespace pp

Powered by Google App Engine
This is Rietveld 408576698