Index: experimental/visual_studio_plugin/src/NaClVsx.Package/Templates/Projects/WebApp_C/WebApp.c |
diff --git a/experimental/visual_studio_plugin/src/NaClVsx.Package/Templates/Projects/WebApp_C/WebApp.c b/experimental/visual_studio_plugin/src/NaClVsx.Package/Templates/Projects/WebApp_C/WebApp.c |
deleted file mode 100644 |
index 8d2630290187d6e85cda144bed0cdd702f8a7846..0000000000000000000000000000000000000000 |
--- a/experimental/visual_studio_plugin/src/NaClVsx.Package/Templates/Projects/WebApp_C/WebApp.c |
+++ /dev/null |
@@ -1,227 +0,0 @@ |
-/** @file $safeprojectname$.c |
- * This example demonstrates loading, running and scripting a very simple |
- * NaCl module. |
- */ |
-#include <stdlib.h> |
-#include <string.h> |
-#include "ppapi/c/pp_errors.h" |
-#include "ppapi/c/pp_module.h" |
-#include "ppapi/c/pp_var.h" |
-#include "ppapi/c/ppb.h" |
-#include "ppapi/c/ppb_instance.h" |
-#include "ppapi/c/ppb_messaging.h" |
-#include "ppapi/c/ppb_var.h" |
-#include "ppapi/c/ppp.h" |
-#include "ppapi/c/ppp_instance.h" |
-#include "ppapi/c/ppp_messaging.h" |
- |
-static PP_Module module_id = 0; |
-static struct PPB_Messaging* messaging_interface = NULL; |
-static struct PPB_Var* var_interface = NULL; |
- |
-/** |
- * Returns a mutable C string contained in the @a var or NULL if @a var is not |
- * string. This makes a copy of the string in the @a var and adds a NULL |
- * terminator. Note that VarToUtf8() does not guarantee the NULL terminator on |
- * the returned string. See the comments for VarToUtf8() in ppapi/c/ppb_var.h |
- * for more info. The caller is responsible for freeing the returned memory. |
- * @param[in] var PP_Var containing string. |
- * @return a mutable C string representation of @a var. |
- * @note The caller is responsible for freeing the returned string. |
- */ |
-/* TODO(sdk_user): 2. Uncomment this when you need it. It is commented out so |
- * that the compiler doesn't complain about unused functions. |
- */ |
-#if 0 |
-static char* AllocateCStrFromVar(struct PP_Var var) { |
- uint32_t len = 0; |
- if (var_interface != NULL) { |
- const char* var_c_str = var_interface->VarToUtf8(var, &len); |
- if (len > 0) { |
- char* c_str = (char*)malloc(len + 1); |
- memcpy(c_str, var_c_str, len); |
- c_str[len] = '\0'; |
- return c_str; |
- } |
- } |
- return NULL; |
-} |
-#endif |
- |
-/** |
- * Creates a new string PP_Var from C string. The resulting object will be a |
- * refcounted string object. It will be AddRef()ed for the caller. When the |
- * caller is done with it, it should be Release()d. |
- * @param[in] str C string to be converted to PP_Var |
- * @return PP_Var containing string. |
- */ |
-/* TODO(sdk_user): 3. Uncomment this when you need it. It is commented out so |
- * that the compiler doesn't complain about unused functions. |
- */ |
-#if 0 |
-static struct PP_Var AllocateVarFromCStr(const char* str) { |
- if (var_interface != NULL) |
- return var_interface->VarFromUtf8(module_id, str, strlen(str)); |
- return PP_MakeUndefined(); |
-} |
-#endif |
- |
-/** |
- * Called when the NaCl module is instantiated on the web page. The identifier |
- * of the new instance will be passed in as the first argument (this value is |
- * generated by the browser and is an opaque handle). This is called for each |
- * instantiation of the NaCl module, which is each time the <embed> tag for |
- * this module is encountered. |
- * |
- * If this function reports a failure (by returning @a PP_FALSE), the NaCl |
- * module will be deleted and DidDestroy will be called. |
- * @param[in] instance The identifier of the new instance representing this |
- * NaCl module. |
- * @param[in] argc The number of arguments contained in @a argn and @a argv. |
- * @param[in] argn An array of argument names. These argument names are |
- * supplied in the <embed> tag, for example: |
- * <embed id="nacl_module" dimensions="2"> |
- * will produce two arguments, one named "id" and one named "dimensions". |
- * @param[in] argv An array of argument values. These are the values of the |
- * arguments listed in the <embed> tag. In the above example, there will |
- * be two elements in this array, "nacl_module" and "2". The indices of |
- * these values match the indices of the corresponding names in @a argn. |
- * @return @a PP_TRUE on success. |
- */ |
-static PP_Bool Instance_DidCreate(PP_Instance instance, |
- uint32_t argc, |
- const char* argn[], |
- const char* argv[]) { |
- return PP_TRUE; |
-} |
- |
-/** |
- * Called when the NaCl module is destroyed. This will always be called, |
- * even if DidCreate returned failure. This routine should deallocate any data |
- * associated with the instance. |
- * @param[in] instance The identifier of the instance representing this NaCl |
- * module. |
- */ |
-static void Instance_DidDestroy(PP_Instance instance) { |
-} |
- |
-/** |
- * Called when the position, the size, or the clip rect of the element in the |
- * browser that corresponds to this NaCl module has changed. |
- * @param[in] instance The identifier of the instance representing this NaCl |
- * module. |
- * @param[in] position The location on the page of this NaCl module. This is |
- * relative to the top left corner of the viewport, which changes as the |
- * page is scrolled. |
- * @param[in] clip The visible region of the NaCl module. This is relative to |
- * the top left of the plugin's coordinate system (not the page). If the |
- * plugin is invisible, @a clip will be (0, 0, 0, 0). |
- */ |
-static void Instance_DidChangeView(PP_Instance instance, |
- const struct PP_Rect* position, |
- const struct PP_Rect* clip) { |
-} |
- |
-/** |
- * Notification that the given NaCl module has gained or lost focus. |
- * Having focus means that keyboard events will be sent to the NaCl module |
- * represented by @a instance. A NaCl module's default condition is that it |
- * will not have focus. |
- * |
- * Note: clicks on NaCl modules will give focus only if you handle the |
- * click event. You signal if you handled it by returning @a true from |
- * HandleInputEvent. Otherwise the browser will bubble the event and give |
- * focus to the element on the page that actually did end up consuming it. |
- * If you're not getting focus, check to make sure you're returning true from |
- * the mouse click in HandleInputEvent. |
- * @param[in] instance The identifier of the instance representing this NaCl |
- * module. |
- * @param[in] has_focus Indicates whether this NaCl module gained or lost |
- * event focus. |
- */ |
-static void Instance_DidChangeFocus(PP_Instance instance, |
- PP_Bool has_focus) { |
-} |
- |
-/** |
- * Handler that gets called after a full-frame module is instantiated based on |
- * registered MIME types. This function is not called on NaCl modules. This |
- * function is essentially a place-holder for the required function pointer in |
- * the PPP_Instance structure. |
- * @param[in] instance The identifier of the instance representing this NaCl |
- * module. |
- * @param[in] url_loader A PP_Resource an open PPB_URLLoader instance. |
- * @return PP_FALSE. |
- */ |
-static PP_Bool Instance_HandleDocumentLoad(PP_Instance instance, |
- PP_Resource url_loader) { |
- /* NaCl modules do not need to handle the document load function. */ |
- return PP_FALSE; |
-} |
- |
- |
-/** |
- * Handler for messages coming in from the browser via postMessage. The |
- * @a var_message can contain anything: a JSON string; a string that encodes |
- * method names and arguments; etc. For example, you could use JSON.stringify |
- * in the browser to create a message that contains a method name and some |
- * parameters, something like this: |
- * var json_message = JSON.stringify({ "myMethod" : "3.14159" }); |
- * nacl_module.postMessage(json_message); |
- * On receipt of this message in @a var_message, you could parse the JSON to |
- * retrieve the method name, match it to a function call, and then call it with |
- * the parameter. |
- * @param[in] instance The instance ID. |
- * @param[in] message The contents, copied by value, of the message sent from |
- * browser via postMessage. |
- */ |
-void Messaging_HandleMessage(PP_Instance instance, struct PP_Var var_message) { |
- /* TODO(sdk_user): 1. Make this function handle the incoming message. */ |
-} |
- |
-/** |
- * Entry points for the module. |
- * Initialize instance interface and scriptable object class. |
- * @param[in] a_module_id Module ID |
- * @param[in] get_browser_interface Pointer to PPB_GetInterface |
- * @return PP_OK on success, any other value on failure. |
- */ |
-PP_EXPORT int32_t PPP_InitializeModule(PP_Module a_module_id, |
- PPB_GetInterface get_browser_interface) { |
- module_id = a_module_id; |
- var_interface = (struct PPB_Var*)(get_browser_interface(PPB_VAR_INTERFACE)); |
- messaging_interface = |
- (struct PPB_Messaging*)(get_browser_interface(PPB_MESSAGING_INTERFACE)); |
- return PP_OK; |
-} |
- |
-/** |
- * Returns an interface pointer for the interface of the given name, or NULL |
- * if the interface is not supported. |
- * @param[in] interface_name name of the interface |
- * @return pointer to the interface |
- */ |
-PP_EXPORT const void* PPP_GetInterface(const char* interface_name) { |
- if (strcmp(interface_name, PPP_INSTANCE_INTERFACE) == 0) { |
- static struct PPP_Instance instance_interface = { |
- &Instance_DidCreate, |
- &Instance_DidDestroy, |
- &Instance_DidChangeView, |
- &Instance_DidChangeFocus, |
- &Instance_HandleDocumentLoad |
- }; |
- return &instance_interface; |
- } else if (strcmp(interface_name, PPP_MESSAGING_INTERFACE) == 0) { |
- static struct PPP_Messaging messaging_interface = { |
- &Messaging_HandleMessage |
- }; |
- return &messaging_interface; |
- } |
- return NULL; |
-} |
- |
-/** |
- * Called before the plugin module is unloaded. |
- */ |
-PP_EXPORT void PPP_ShutdownModule() { |
-} |