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

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

Issue 10544168: Implement HiDPI support in Pepper dev interface (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase 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
« no previous file with comments | « ppapi/cpp/dev/graphics_2d_dev.h ('k') | ppapi/cpp/dev/view_dev.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/dev/graphics_2d_dev.cc
diff --git a/ppapi/cpp/dev/graphics_2d_dev.cc b/ppapi/cpp/dev/graphics_2d_dev.cc
new file mode 100644
index 0000000000000000000000000000000000000000..1a04b6a1630427d212823466d3eebd873ededc49
--- /dev/null
+++ b/ppapi/cpp/dev/graphics_2d_dev.cc
@@ -0,0 +1,33 @@
+// 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/graphics_2d_dev.h"
+
+#include "ppapi/c/dev/ppb_graphics_2d_dev.h"
+#include "ppapi/cpp/module_impl.h"
+
+namespace pp {
+
+namespace {
+
+template <> const char* interface_name<PPB_Graphics2D_Dev>() {
+ return PPB_GRAPHICS2D_DEV_INTERFACE;
+}
+
+} // namespace
+
+bool Graphics2DDev::SetScale(float scale) {
+ if (!has_interface<PPB_Graphics2D_Dev>())
+ return false;
+ return PP_ToBool(get_interface<PPB_Graphics2D_Dev>()->SetScale(pp_resource(),
+ scale));
+}
+
+float Graphics2DDev::GetScale() {
+ if (!has_interface<PPB_Graphics2D_Dev>())
+ return 1.0f;
+ return get_interface<PPB_Graphics2D_Dev>()->GetScale(pp_resource());
+}
+
+} // namespace pp
« no previous file with comments | « ppapi/cpp/dev/graphics_2d_dev.h ('k') | ppapi/cpp/dev/view_dev.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698