Index: ppapi/native_client/src/shared/ppapi_proxy/view_data.h |
diff --git a/ppapi/native_client/src/shared/ppapi_proxy/view_data.h b/ppapi/native_client/src/shared/ppapi_proxy/view_data.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..82446e0f34e9ce4755af30ea3d115ff9a12f1f50 |
--- /dev/null |
+++ b/ppapi/native_client/src/shared/ppapi_proxy/view_data.h |
@@ -0,0 +1,24 @@ |
+// Copyright (c) 2011 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. |
+ |
+#ifndef PPAPI_NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_VIEW_DATA_H_ |
+#define PPAPI_NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_VIEW_DATA_H_ |
+ |
+#include "ppapi/c/pp_bool.h" |
+#include "ppapi/c/pp_rect.h" |
+ |
+namespace ppapi_proxy { |
+ |
+struct ViewData { |
+ ViewData(); |
+ |
+ PP_Rect viewport_rect; |
+ PP_Bool is_fullscreen; |
+ PP_Bool is_page_visible; |
+ PP_Rect clip_rect; |
+}; |
+ |
+} // namespace ppapi_proxy |
+ |
+#endif // PPAPI_NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_VIEW_DATA_H_ |