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

Side by Side Diff: ppapi/c/dev/ppp_resize_dev.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 unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
4 */
5 #ifndef PPAPI_C_DEV_PPP_RESIZE_DEV_H_
6 #define PPAPI_C_DEV_PPP_RESIZE_DEV_H_
7
8 #include "ppapi/c/pp_instance.h"
9 #include "ppapi/c/pp_resource.h"
10
11 // Interface for a full-frame plugin to implement when it wants to know when
12 // frame resizing starts and stops.
13 #define PPP_RESIZE_DEV_INTERFACE "PPP_Resize(Dev);0.1"
14
15 struct PPP_Resize_Dev {
16 // Notification that the resizing for this full frame plugin has started.
17 void (*WillStartLiveResize)(PP_Instance instance);
18
19 // Notification that the resizing for this full frame plugin has stopped.
20 void (*WillEndLiveResize)(PP_Instance instance);
21 };
22
23 #endif /* PPAPI_C_DEV_PPP_RESIZE_DEV_H_ */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698