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

Unified Diff: ppapi/cpp/dev/view_dev.cc

Issue 10544168: Implement HiDPI support in Pepper dev interface (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add comments to Graphics2DDev C++ header 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/dev/view_dev.cc
diff --git a/ppapi/cpp/dev/view_dev.cc b/ppapi/cpp/dev/view_dev.cc
new file mode 100644
index 0000000000000000000000000000000000000000..3dc653c93cb1a1216ae86b43b73bef9601dd7f3f
--- /dev/null
+++ b/ppapi/cpp/dev/view_dev.cc
@@ -0,0 +1,38 @@
+// 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/dev/view_dev.h"
+
+#include "ppapi/c/dev/ppb_view_dev.h"
+#include "ppapi/cpp/module_impl.h"
+
+namespace pp {
+
+namespace {
+
+template <> const char* interface_name<PPB_View_Dev>() {
+ return PPB_VIEW_DEV_INTERFACE;
+}
+
+} // namespace
+
+float ViewDev::GetDeviceScale() const {
+ if (has_interface<PPB_View_Dev>()) {
brettw 2012/06/19 18:28:21 It's not clear to me why this remaps error values.
Josh Horwich 2012/06/19 23:56:15 Done.
+ float out = get_interface<PPB_View_Dev>()->GetDeviceScale(pp_resource());
+ if (out > 0.0f)
+ return out;
+ }
+ return 1.0f;
+}
+
+float ViewDev::GetCSSScale() const {
+ if (has_interface<PPB_View_Dev>()) {
+ float out = get_interface<PPB_View_Dev>()->GetCSSScale(pp_resource());
+ if (out > 0.0f)
+ return out;
+ }
+ return 1.0f;
+}
+
+} // namespace pp

Powered by Google App Engine
This is Rietveld 408576698