Index: ppapi/cpp/dev/scrollbar_group_dev.h |
=================================================================== |
--- ppapi/cpp/dev/scrollbar_group_dev.h (revision 0) |
+++ ppapi/cpp/dev/scrollbar_group_dev.h (revision 0) |
@@ -0,0 +1,31 @@ |
+// 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_CPP_DEV_SCROLLBAR_GROUP_DEV_H_ |
+#define PPAPI_CPP_DEV_SCROLLBAR_GROUP_DEV_H_ |
+ |
+#include "ppapi/c/dev/ppb_scrollbar_group_dev.h" |
+#include "ppapi/cpp/resource.h" |
+ |
+namespace pp { |
+ |
+class Instance; |
+ |
+// This class is required when constructing a Scrollbar because on some |
+// platforms the look of one scrollbar depends on the other. |
+class ScrollbarGroup_Dev : public Resource { |
+ public: |
+ // Creates an is_null() ScrollbarGroup object. |
+ ScrollbarGroup_Dev() {} |
+ |
+ explicit ScrollbarGroup_Dev(PP_Resource resource); |
+ ScrollbarGroup_Dev(const Instance& instance); |
+ ScrollbarGroup_Dev(const ScrollbarGroup_Dev& other); |
+ |
+ ScrollbarGroup_Dev& operator=(const ScrollbarGroup_Dev& other); |
+}; |
+ |
+} // namespace pp |
+ |
+#endif // PPAPI_CPP_DEV_SCROLLBAR_GROUP_DEV_H_ |
Property changes on: ppapi\cpp\dev\scrollbar_group_dev.h |
___________________________________________________________________ |
Added: svn:eol-style |
+ LF |