Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / ppapi / api / private / finish_writing_these / ppb_pdf.idl
index adb2c75..20e077f 100644 (file)
@@ -151,8 +151,15 @@ interface PPB_PDF_0_1 {
   PP_Bool IsOutOfProcess(
       [in] PP_Instance instance);
 
-  /* Sets the selected text of the plugin. */
+  /* Sets the selected text of the plugin. If |selected_text| is empty, then no
+   * text is selected. */
   void SetSelectedText(
       [in] PP_Instance instance,
       [in] str_t selected_text);
+
+  /* Sets the link under the cursor. If |url| is empty, then no link is under
+   * the cursor. */
+  void SetLinkUnderCursor(
+      [in] PP_Instance instance,
+      [in] str_t url);
 };