| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 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 WEBKIT_PLUGINS_PPAPI_PPB_WIDGET_IMPL_H_ | 5 #ifndef WEBKIT_PLUGINS_PPAPI_PPB_WIDGET_IMPL_H_ |
| 6 #define WEBKIT_PLUGINS_PPAPI_PPB_WIDGET_IMPL_H_ | 6 #define WEBKIT_PLUGINS_PPAPI_PPB_WIDGET_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "ppapi/c/pp_rect.h" | 10 #include "ppapi/c/pp_rect.h" |
| 11 #include "ppapi/shared_impl/resource.h" | 11 #include "ppapi/shared_impl/resource.h" |
| 12 #include "ppapi/thunk/ppb_widget_api.h" | 12 #include "ppapi/thunk/ppb_widget_api.h" |
| 13 | 13 |
| 14 struct PPB_Widget_Dev; | |
| 15 | |
| 16 namespace gfx { | 14 namespace gfx { |
| 17 class Rect; | 15 class Rect; |
| 18 } | 16 } |
| 19 namespace ppapi { | 17 namespace ppapi { |
| 20 struct InputEventData; | 18 struct InputEventData; |
| 21 } | 19 } |
| 22 | 20 |
| 23 namespace webkit { | 21 namespace webkit { |
| 24 namespace ppapi { | 22 namespace ppapi { |
| 25 | 23 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 54 private: | 52 private: |
| 55 PP_Rect location_; | 53 PP_Rect location_; |
| 56 | 54 |
| 57 DISALLOW_COPY_AND_ASSIGN(PPB_Widget_Impl); | 55 DISALLOW_COPY_AND_ASSIGN(PPB_Widget_Impl); |
| 58 }; | 56 }; |
| 59 | 57 |
| 60 } // namespace ppapi | 58 } // namespace ppapi |
| 61 } // namespace webkit | 59 } // namespace webkit |
| 62 | 60 |
| 63 #endif // WEBKIT_PLUGINS_PPAPI_PPB_WIDGET_IMPL_H_ | 61 #endif // WEBKIT_PLUGINS_PPAPI_PPB_WIDGET_IMPL_H_ |
| OLD | NEW |