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

Unified Diff: ppapi/thunk/ppb_view_thunk.cc

Issue 1820873005: Run ppapi/generators/generator.py (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/thunk/ppb_view_dev_thunk.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/thunk/ppb_view_thunk.cc
diff --git a/ppapi/thunk/ppb_view_thunk.cc b/ppapi/thunk/ppb_view_thunk.cc
index 980c768fbf116add3147b8a4276b5d132560538e..6e069fc1d4ec4452eb011b5d7f3cc5e98a713dc2 100644
--- a/ppapi/thunk/ppb_view_thunk.cc
+++ b/ppapi/thunk/ppb_view_thunk.cc
@@ -2,7 +2,9 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-// From ppb_view.idl modified Wed Nov 5 14:29:15 2014.
+// From ppb_view.idl modified Wed Jan 27 17:10:16 2016.
+
+#include <stdint.h>
#include "ppapi/c/pp_errors.h"
#include "ppapi/c/ppb_view.h"
@@ -86,31 +88,17 @@ PP_Bool GetScrollOffset(PP_Resource resource, struct PP_Point* offset) {
return enter.object()->GetScrollOffset(offset);
}
-const PPB_View_1_0 g_ppb_view_thunk_1_0 = {&IsView,
- &GetRect,
- &IsFullscreen,
- &IsVisible,
- &IsPageVisible,
- &GetClipRect};
-
-const PPB_View_1_1 g_ppb_view_thunk_1_1 = {&IsView,
- &GetRect,
- &IsFullscreen,
- &IsVisible,
- &IsPageVisible,
- &GetClipRect,
- &GetDeviceScale,
- &GetCSSScale};
-
-const PPB_View_1_2 g_ppb_view_thunk_1_2 = {&IsView,
- &GetRect,
- &IsFullscreen,
- &IsVisible,
- &IsPageVisible,
- &GetClipRect,
- &GetDeviceScale,
- &GetCSSScale,
- &GetScrollOffset};
+const PPB_View_1_0 g_ppb_view_thunk_1_0 = {
+ &IsView, &GetRect, &IsFullscreen, &IsVisible, &IsPageVisible, &GetClipRect};
+
+const PPB_View_1_1 g_ppb_view_thunk_1_1 = {
+ &IsView, &GetRect, &IsFullscreen, &IsVisible,
+ &IsPageVisible, &GetClipRect, &GetDeviceScale, &GetCSSScale};
+
+const PPB_View_1_2 g_ppb_view_thunk_1_2 = {
+ &IsView, &GetRect, &IsFullscreen,
+ &IsVisible, &IsPageVisible, &GetClipRect,
+ &GetDeviceScale, &GetCSSScale, &GetScrollOffset};
} // namespace
« no previous file with comments | « ppapi/thunk/ppb_view_dev_thunk.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698