OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef PPAPI_SHARED_IMPL_PPP_INSTANCE_COMBINED_H_ | 5 #ifndef PPAPI_SHARED_IMPL_PPP_INSTANCE_COMBINED_H_ |
6 #define PPAPI_SHARED_IMPL_PPP_INSTANCE_COMBINED_H_ | 6 #define PPAPI_SHARED_IMPL_PPP_INSTANCE_COMBINED_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/callback.h" | 9 #include "base/callback.h" |
10 #include "ppapi/c/ppp_instance.h" | 10 #include "ppapi/c/ppp_instance.h" |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 void (*did_change_view_1_0_)(PP_Instance instance, | 53 void (*did_change_view_1_0_)(PP_Instance instance, |
54 const struct PP_Rect* position, | 54 const struct PP_Rect* position, |
55 const struct PP_Rect* clip); | 55 const struct PP_Rect* clip); |
56 | 56 |
57 DISALLOW_COPY_AND_ASSIGN(PPP_Instance_Combined); | 57 DISALLOW_COPY_AND_ASSIGN(PPP_Instance_Combined); |
58 }; | 58 }; |
59 | 59 |
60 } // namespace ppapi | 60 } // namespace ppapi |
61 | 61 |
62 #endif // PPAPI_SHARED_IMPL_PPP_INSTANCE_COMBINED_H_ | 62 #endif // PPAPI_SHARED_IMPL_PPP_INSTANCE_COMBINED_H_ |
63 | |
OLD | NEW |