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

Unified Diff: ppapi/cpp/dev/zoom_dev.h

Issue 1161563002: Remove unused in-process pepper APIs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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/widget_dev.cc ('k') | ppapi/cpp/dev/zoom_dev.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/dev/zoom_dev.h
diff --git a/ppapi/cpp/dev/zoom_dev.h b/ppapi/cpp/dev/zoom_dev.h
deleted file mode 100644
index b63c0195da7717e5a1d861519b620f31b5643a6a..0000000000000000000000000000000000000000
--- a/ppapi/cpp/dev/zoom_dev.h
+++ /dev/null
@@ -1,59 +0,0 @@
-// Copyright (c) 2010 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.
-
-#ifndef PPAPI_CPP_DEV_ZOOM_DEV_H_
-#define PPAPI_CPP_DEV_ZOOM_DEV_H_
-
-#include <string>
-
-#include "ppapi/c/dev/ppp_zoom_dev.h"
-#include "ppapi/cpp/instance_handle.h"
-
-namespace pp {
-
-class Instance;
-
-// This class allows you to associate the PPP_Zoom_Dev and PPB_Zoom_Dev C-based
-// interfaces with an object. It associates itself with the given instance, and
-// registers as the global handler for handling the PPP_Zoom_Dev interface that
-// the browser calls.
-//
-// You would typically use this either via inheritance on your instance:
-// class MyInstance : public pp::Instance, public pp::Zoom_Dev {
-// class MyInstance() : pp::Zoom_Dev(this) {
-// }
-// ...
-// };
-//
-// or by composition:
-// class MyZoom : public pp::Zoom_Dev {
-// ...
-// };
-//
-// class MyInstance : public pp::Instance {
-// MyInstance() : zoom_(this) {
-// }
-//
-// MyZoom zoom_;
-// };
-class Zoom_Dev {
- public:
- explicit Zoom_Dev(Instance* instance);
- virtual ~Zoom_Dev();
-
- // PPP_Zoom_Dev functions exposed as virtual functions for you to
- // override.
- virtual void Zoom(double factor, bool text_only) = 0;
-
- // PPB_Zoom_Def functions for you to call to report new zoom factor.
- void ZoomChanged(double factor);
- void ZoomLimitsChanged(double minimum_factor, double maximium_factor);
-
- private:
- InstanceHandle associated_instance_;
-};
-
-} // namespace pp
-
-#endif // PPAPI_CPP_DEV_ZOOM_DEV_H_
« no previous file with comments | « ppapi/cpp/dev/widget_dev.cc ('k') | ppapi/cpp/dev/zoom_dev.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698