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 14 matching lines...) Expand all Loading... |
25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 */ | 26 */ |
27 | 27 |
28 #ifndef FrameViewBase_h | 28 #ifndef FrameViewBase_h |
29 #define FrameViewBase_h | 29 #define FrameViewBase_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 "wtf/Forward.h" | 35 #include "platform/wtf/Forward.h" |
36 | 36 |
37 namespace blink { | 37 namespace blink { |
38 | 38 |
39 class CullRect; | 39 class CullRect; |
40 class Event; | 40 class Event; |
41 class GraphicsContext; | 41 class GraphicsContext; |
42 | 42 |
43 // The FrameViewBase class serves as a base class for FrameView, Scrollbar, and | 43 // The FrameViewBase class serves as a base class for FrameView, Scrollbar, and |
44 // PluginView. | 44 // PluginView. |
45 // | 45 // |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 private: | 129 private: |
130 Member<FrameViewBase> parent_; | 130 Member<FrameViewBase> parent_; |
131 IntRect frame_rect_; | 131 IntRect frame_rect_; |
132 bool self_visible_; | 132 bool self_visible_; |
133 bool parent_visible_; | 133 bool parent_visible_; |
134 }; | 134 }; |
135 | 135 |
136 } // namespace blink | 136 } // namespace blink |
137 | 137 |
138 #endif // FrameViewBase_h | 138 #endif // FrameViewBase_h |
OLD | NEW |