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

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: Build fix 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
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 25 matching lines...) Expand all
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698