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

Unified Diff: ppapi/shared_impl/resource_var.h

Issue 23346009: [PPAPI] Added a new Var subclass, ResourceVar. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Added constructor that takes IPC::Message. Created 7 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
Index: ppapi/shared_impl/resource_var.h
diff --git a/ppapi/shared_impl/resource_var.h b/ppapi/shared_impl/resource_var.h
new file mode 100644
index 0000000000000000000000000000000000000000..3015f1a673bd479bd0dc532c24479baa6cfd7b8b
--- /dev/null
+++ b/ppapi/shared_impl/resource_var.h
@@ -0,0 +1,63 @@
+// Copyright 2013 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_SHARED_IMPL_RESOURCE_VAR_H_
+#define PPAPI_SHARED_IMPL_RESOURCE_VAR_H_
+
+#include "ipc/ipc_message.h"
+#include "ppapi/c/pp_resource.h"
+#include "ppapi/c/pp_var.h"
+#include "ppapi/shared_impl/ppapi_shared_export.h"
+#include "ppapi/shared_impl/var.h"
+
+namespace ppapi {
+
+// Represents a resource Var.
+class PPAPI_SHARED_EXPORT ResourceVar : public Var {
+ public:
+ // Makes a null resource var.
+ ResourceVar();
+
+ // Makes a resource var with an existing plugin-side resource.
+ ResourceVar(PP_Resource resource_id);
yzshen1 2013/08/28 17:31:58 explicit?
Matt Giuca 2013/08/29 01:44:47 Done.
+
+ // Makes a resource var with a pending resource host.
+ // The |creation_message| contains instructions on how to create the
+ // plugin-side resource host. Its type depends on the type of resource.
yzshen1 2013/08/28 17:31:58 rule of thumb: "resource host" at the brower/rende
Matt Giuca 2013/08/29 01:44:47 Done.
+ ResourceVar(const IPC::Message& creation_message);
yzshen1 2013/08/28 17:31:58 explicit, please.
Matt Giuca 2013/08/29 01:44:47 Done.
+
+ virtual ~ResourceVar();
+
+ // Gets the resource ID associated with this var.
+ // This is 0 if a resource is still pending.
+ PP_Resource resource_id() const { return resource_id_; }
yzshen1 2013/08/28 17:31:58 To be more consistent with other code, please cons
Matt Giuca 2013/08/29 01:44:47 Done.
+
+ // Gets the message for creating a plugin-side resource.
+ // May be an empty message.
+ const IPC::Message& creation_message() const { return creation_message_; }
+
+ // Var override.
+ virtual ResourceVar* AsResourceVar() OVERRIDE;
+ virtual PP_VarType GetType() const OVERRIDE;
+
+ // Helper function that converts a PP_Var to a ResourceVar. This will
+ // return NULL if the PP_Var is not of Resource type.
+ static ResourceVar* FromPPVar(PP_Var var);
+
+ private:
+ // Real resource ID in the plugin. 0 if one has not yet been created
+ // (indicating that there is a pending host resource).
+ PP_Resource resource_id_;
yzshen1 2013/08/28 17:31:58 Are you planning to use this same ResourceVar clas
Matt Giuca 2013/08/29 01:44:47 I haven't thought much about the reference countin
yzshen1 2013/08/30 00:25:27 Correct. This part is relatively easy.
Matt Giuca 2013/08/30 02:55:20 Thanks for explaining. OK it sounds like none of
+
+ // If the plugin-side resource has not yet been created, carries a message to
+ // create a resource of the specific type on the plugin side.
+ // Otherwise, carries an empty message.
+ IPC::Message creation_message_;
+
+ DISALLOW_COPY_AND_ASSIGN(ResourceVar);
+};
+
+} // namespace ppapi
+
+#endif // PPAPI_SHARED_IMPL_RESOURCE_VAR_H_

Powered by Google App Engine
This is Rietveld 408576698