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

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

Issue 9381010: Convert resources to take an instance key instead of an Instance*. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: USELESS PATCH TITLE Created 8 years, 10 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/scrollbar_dev.cc ('k') | ppapi/cpp/dev/selection_dev.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/dev/selection_dev.h
diff --git a/ppapi/cpp/dev/selection_dev.h b/ppapi/cpp/dev/selection_dev.h
index 282bdb431977c0e6bfffc20e7aec436ca5034c25..7e9fa2b5138883866a8e531f47b7cd6986f01f6a 100644
--- a/ppapi/cpp/dev/selection_dev.h
+++ b/ppapi/cpp/dev/selection_dev.h
@@ -6,10 +6,10 @@
#define PPAPI_CPP_DEV_SELECTION_DEV_H_
#include "ppapi/c/dev/ppp_selection_dev.h"
+#include "ppapi/cpp/instance_handle.h"
namespace pp {
-class Instance;
class Var;
// This class allows you to associate the PPP_Selection_Dev C-based interface
@@ -36,7 +36,7 @@ class Var;
// };
class Selection_Dev {
public:
- Selection_Dev(Instance* instance);
+ explicit Selection_Dev(const InstanceHandle& instance);
virtual ~Selection_Dev();
// PPP_Selection_Dev functions exposed as virtual functions for you to
@@ -44,7 +44,7 @@ class Selection_Dev {
virtual Var GetSelectedText(bool html) = 0;
private:
- Instance* associated_instance_;
+ InstanceHandle associated_instance_;
};
} // namespace pp
« no previous file with comments | « ppapi/cpp/dev/scrollbar_dev.cc ('k') | ppapi/cpp/dev/selection_dev.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698