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

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

Issue 498123002: Remove unused PPB_View_Dev (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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/view_dev.h ('k') | ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_shim.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/dev/view_dev.cc
diff --git a/ppapi/cpp/dev/view_dev.cc b/ppapi/cpp/dev/view_dev.cc
deleted file mode 100644
index 473e9b465c24db7af220095112b4e1ee206d7a30..0000000000000000000000000000000000000000
--- a/ppapi/cpp/dev/view_dev.cc
+++ /dev/null
@@ -1,32 +0,0 @@
-// 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>())
- return 1.0f;
- return get_interface<PPB_View_Dev>()->GetDeviceScale(pp_resource());
-}
-
-float ViewDev::GetCSSScale() const {
- if (!has_interface<PPB_View_Dev>())
- return 1.0f;
- return get_interface<PPB_View_Dev>()->GetCSSScale(pp_resource());
-}
-
-} // namespace pp
« no previous file with comments | « ppapi/cpp/dev/view_dev.h ('k') | ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_shim.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698