Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Side by Side Diff: Source/platform/HostWindow.h

Issue 919423002: Audited and renamed uses of methods and variables named RootView (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase again Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/core/testing/Internals.idl ('k') | Source/web/ChromeClientImpl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « Source/core/testing/Internals.idl ('k') | Source/web/ChromeClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698