| 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 25 matching lines...) Expand all Loading... |
| 36 | 36 |
| 37 class PLATFORM_EXPORT HostWindow { | 37 class PLATFORM_EXPORT HostWindow { |
| 38 WTF_MAKE_NONCOPYABLE(HostWindow); WTF_MAKE_FAST_ALLOCATED; | 38 WTF_MAKE_NONCOPYABLE(HostWindow); WTF_MAKE_FAST_ALLOCATED; |
| 39 public: | 39 public: |
| 40 HostWindow() { } | 40 HostWindow() { } |
| 41 virtual ~HostWindow() { } | 41 virtual ~HostWindow() { } |
| 42 | 42 |
| 43 // Requests the host invalidate the contents. | 43 // Requests the host invalidate the contents. |
| 44 virtual void invalidateRect(const IntRect& updateRect) = 0; | 44 virtual void invalidateRect(const IntRect& updateRect) = 0; |
| 45 | 45 |
| 46 // Methods for doing coordinate conversions to screen coordinates. | 46 // Converts from the window coordinates to screen coordinates. |
| 47 virtual IntRect rootViewToScreen(const IntRect&) const = 0; | 47 virtual IntRect viewportToScreen(const IntRect&) const = 0; |
| 48 | 48 |
| 49 virtual WebScreenInfo screenInfo() const = 0; | 49 virtual WebScreenInfo screenInfo() const = 0; |
| 50 | 50 |
| 51 virtual void scheduleAnimation() = 0; | 51 virtual void scheduleAnimation() = 0; |
| 52 }; | 52 }; |
| 53 | 53 |
| 54 } // namespace blink | 54 } // namespace blink |
| 55 | 55 |
| 56 #endif // HostWindow_h | 56 #endif // HostWindow_h |
| OLD | NEW |