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

Unified Diff: webkit/plugins/ppapi/ppapi_plugin_instance.h

Issue 7538006: Pepper and WebKit API change to support a plugin knowing if a scrollbar is an overlay one. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Redo by adding ScrollbarGroup to pepper and WebKit Created 9 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: webkit/plugins/ppapi/ppapi_plugin_instance.h
===================================================================
--- webkit/plugins/ppapi/ppapi_plugin_instance.h (revision 95420)
+++ webkit/plugins/ppapi/ppapi_plugin_instance.h (working copy)
@@ -40,6 +40,7 @@
struct PPP_Messaging;
struct PPP_Pdf;
struct PPP_PolicyUpdate_Dev;
+struct PPP_Resize_Dev;
struct PPP_Selection_Dev;
struct PPP_Zoom_Dev;
@@ -199,6 +200,8 @@
int identifier);
void SelectFindResult(bool forward);
void StopFind();
+ void WillStartLiveResize();
+ void WillEndLiveResize();
bool SupportsPrintInterface();
int PrintBegin(const gfx::Rect& printable_area, int printer_dpi);
@@ -292,6 +295,7 @@
bool LoadPolicyUpdateInterface();
bool LoadPrintInterface();
bool LoadPrivateInterface();
+ bool LoadResizeInterface();
bool LoadSelectionInterface();
bool LoadZoomInterface();
@@ -389,6 +393,7 @@
const PPP_Instance_Private* plugin_private_interface_;
const PPP_Pdf* plugin_pdf_interface_;
const PPP_PolicyUpdate_Dev* plugin_policy_updated_interface_;
+ const PPP_Resize_Dev* plugin_resize_interface_;
const PPP_Selection_Dev* plugin_selection_interface_;
const PPP_Zoom_Dev* plugin_zoom_interface_;

Powered by Google App Engine
This is Rietveld 408576698