| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 | 43 |
| 44 // Requests the host invalidate the contents. | 44 // Requests the host invalidate the contents. |
| 45 virtual void invalidateRect(const IntRect& updateRect) = 0; | 45 virtual void invalidateRect(const IntRect& updateRect) = 0; |
| 46 | 46 |
| 47 // Requests the host to invalidate display items, if owned by the host | 47 // Requests the host to invalidate display items, if owned by the host |
| 48 // window. At present Chrome does not (display items are owned by the | 48 // window. At present Chrome does not (display items are owned by the |
| 49 // GraphicsLayer instead), but PopupContainerClient does. | 49 // GraphicsLayer instead), but PopupContainerClient does. |
| 50 virtual void invalidateDisplayItemClient(DisplayItemClient) { } | 50 virtual void invalidateDisplayItemClient(DisplayItemClient) { } |
| 51 virtual void invalidateAllDisplayItems() { } | 51 virtual void invalidateAllDisplayItems() { } |
| 52 | 52 |
| 53 // Methods for doing coordinate conversions to screen coordinates. | 53 // Converts from the window coordinates to screen coordinates. |
| 54 virtual IntRect rootViewToScreen(const IntRect&) const = 0; | 54 virtual IntRect viewportToScreen(const IntRect&) const = 0; |
| 55 | 55 |
| 56 virtual WebScreenInfo screenInfo() const = 0; | 56 virtual WebScreenInfo screenInfo() const = 0; |
| 57 | 57 |
| 58 virtual void scheduleAnimation() = 0; | 58 virtual void scheduleAnimation() = 0; |
| 59 }; | 59 }; |
| 60 | 60 |
| 61 } // namespace blink | 61 } // namespace blink |
| 62 | 62 |
| 63 #endif // HostWindow_h | 63 #endif // HostWindow_h |
| OLD | NEW |