| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. All rights reserved. | 2 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. All rights reserved. |
| 3 * Copyright (C) 2008 Collabora Ltd. All rights reserved. | 3 * Copyright (C) 2008 Collabora Ltd. All rights reserved. |
| 4 * Copyright (C) 2013 Google Inc. All rights reserved. | 4 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 #ifndef Widget_h | 28 #ifndef Widget_h |
| 29 #define Widget_h | 29 #define Widget_h |
| 30 | 30 |
| 31 #include "platform/PlatformExport.h" | 31 #include "platform/PlatformExport.h" |
| 32 #include "platform/geometry/FloatPoint.h" | 32 #include "platform/geometry/FloatPoint.h" |
| 33 #include "platform/geometry/IntRect.h" | 33 #include "platform/geometry/IntRect.h" |
| 34 #include "platform/heap/Handle.h" | 34 #include "platform/heap/Handle.h" |
| 35 #include "public/platform/WebFocusType.h" | 35 #include "public/platform/WebFocusType.h" |
| 36 #include "wtf/Forward.h" | 36 #include "wtf/Forward.h" |
| 37 #include "wtf/RefCounted.h" | |
| 38 | 37 |
| 39 namespace blink { | 38 namespace blink { |
| 40 | 39 |
| 41 class CullRect; | 40 class CullRect; |
| 42 class Event; | 41 class Event; |
| 43 class GraphicsContext; | 42 class GraphicsContext; |
| 44 class HostWindow; | 43 class HostWindow; |
| 45 | 44 |
| 46 // The Widget class serves as a base class for FrameView, Scrollbar, and PluginV
iew. | 45 // The Widget class serves as a base class for FrameView, Scrollbar, and PluginV
iew. |
| 47 // | 46 // |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 private: | 125 private: |
| 127 Member<Widget> m_parent; | 126 Member<Widget> m_parent; |
| 128 IntRect m_frame; | 127 IntRect m_frame; |
| 129 bool m_selfVisible; | 128 bool m_selfVisible; |
| 130 bool m_parentVisible; | 129 bool m_parentVisible; |
| 131 }; | 130 }; |
| 132 | 131 |
| 133 } // namespace blink | 132 } // namespace blink |
| 134 | 133 |
| 135 #endif // Widget_h | 134 #endif // Widget_h |
| OLD | NEW |