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

Unified Diff: ppapi/c/private/ppb_flash_print.h

Issue 10173029: Add a PPB_Flash_Print interface and implement in Chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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/c/private/ppb_flash.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/c/private/ppb_flash_print.h
diff --git a/ppapi/c/private/ppb_flash_print.h b/ppapi/c/private/ppb_flash_print.h
new file mode 100644
index 0000000000000000000000000000000000000000..9eeb62030d6faea3d029169ab18b5aed913d78d1
--- /dev/null
+++ b/ppapi/c/private/ppb_flash_print.h
@@ -0,0 +1,45 @@
+/* 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.
+ */
+
+/* From private/ppb_flash_print.idl modified Tue Apr 24 16:55:10 2012. */
+
+#ifndef PPAPI_C_PRIVATE_PPB_FLASH_PRINT_H_
+#define PPAPI_C_PRIVATE_PPB_FLASH_PRINT_H_
+
+#include "ppapi/c/pp_instance.h"
+#include "ppapi/c/pp_macros.h"
+#include "ppapi/c/pp_stdint.h"
+
+#define PPB_FLASH_PRINT_INTERFACE_1_0 "PPB_Flash_Print;1.0"
+#define PPB_FLASH_PRINT_INTERFACE PPB_FLASH_PRINT_INTERFACE_1_0
+
+/**
+ * @file
+ * This file contains the <code>PPB_Flash_Print</code> interface.
+ */
+
+
+/**
+ * @addtogroup Interfaces
+ * @{
+ */
+/**
+ * The <code>PPB_Flash_Print</code> interface contains Flash-specific printing
+ * functionality.
+ */
+struct PPB_Flash_Print_1_0 {
+ /**
+ * Invokes printing on the given plugin instance.
+ */
+ void (*InvokePrinting)(PP_Instance instance);
+};
+
+typedef struct PPB_Flash_Print_1_0 PPB_Flash_Print;
+/**
+ * @}
+ */
+
+#endif /* PPAPI_C_PRIVATE_PPB_FLASH_PRINT_H_ */
+
« no previous file with comments | « ppapi/c/private/ppb_flash.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698