| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 IntRect convertFromRootFrame(const IntRect&) const; | 105 IntRect convertFromRootFrame(const IntRect&) const; |
| 106 | 106 |
| 107 IntPoint convertToRootFrame(const IntPoint&) const; | 107 IntPoint convertToRootFrame(const IntPoint&) const; |
| 108 IntPoint convertFromRootFrame(const IntPoint&) const; | 108 IntPoint convertFromRootFrame(const IntPoint&) const; |
| 109 FloatPoint convertFromRootFrame(const FloatPoint&) const; | 109 FloatPoint convertFromRootFrame(const FloatPoint&) const; |
| 110 | 110 |
| 111 virtual void frameRectsChanged() {} | 111 virtual void frameRectsChanged() {} |
| 112 | 112 |
| 113 virtual void widgetGeometryMayHaveChanged() {} | 113 virtual void widgetGeometryMayHaveChanged() {} |
| 114 | 114 |
| 115 virtual IntRect convertToContainingWidget(const IntRect&) const; | 115 virtual IntRect convertToContainingFrameViewBase(const IntRect&) const; |
| 116 virtual IntRect convertFromContainingWidget(const IntRect&) const; | 116 virtual IntRect convertFromContainingFrameViewBase(const IntRect&) const; |
| 117 virtual IntPoint convertToContainingWidget(const IntPoint&) const; | 117 virtual IntPoint convertToContainingFrameViewBase(const IntPoint&) const; |
| 118 virtual IntPoint convertFromContainingWidget(const IntPoint&) const; | 118 virtual IntPoint convertFromContainingFrameViewBase(const IntPoint&) const; |
| 119 | 119 |
| 120 // Virtual methods to convert points to/from child frameviewbases. | 120 // Virtual methods to convert points to/from child frameviewbases. |
| 121 virtual IntPoint convertChildToSelf(const FrameViewBase*, | 121 virtual IntPoint convertChildToSelf(const FrameViewBase*, |
| 122 const IntPoint&) const; | 122 const IntPoint&) const; |
| 123 virtual IntPoint convertSelfToChild(const FrameViewBase*, | 123 virtual IntPoint convertSelfToChild(const FrameViewBase*, |
| 124 const IntPoint&) const; | 124 const IntPoint&) const; |
| 125 | 125 |
| 126 // Notifies this frameviewbase that it will no longer be receiving events. | 126 // Notifies this frameviewbase that it will no longer be receiving events. |
| 127 virtual void eventListenersRemoved() {} | 127 virtual void eventListenersRemoved() {} |
| 128 | 128 |
| 129 DECLARE_VIRTUAL_TRACE(); | 129 DECLARE_VIRTUAL_TRACE(); |
| 130 virtual void dispose() {} | 130 virtual void dispose() {} |
| 131 | 131 |
| 132 private: | 132 private: |
| 133 Member<FrameViewBase> m_parent; | 133 Member<FrameViewBase> m_parent; |
| 134 IntRect m_frameRect; | 134 IntRect m_frameRect; |
| 135 bool m_selfVisible; | 135 bool m_selfVisible; |
| 136 bool m_parentVisible; | 136 bool m_parentVisible; |
| 137 }; | 137 }; |
| 138 | 138 |
| 139 } // namespace blink | 139 } // namespace blink |
| 140 | 140 |
| 141 #endif // FrameViewBase_h | 141 #endif // FrameViewBase_h |
| OLD | NEW |