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

Side by Side Diff: sky/engine/platform/HostWindow.h

Issue 842113005: Delete a bunch of noop paint invalidation code. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: fix comment Created 5 years, 11 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 | « sky/engine/core/rendering/RenderLayerScrollableArea.cpp ('k') | sky/engine/platform/Widget.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 22 matching lines...) Expand all
33 namespace blink { 33 namespace blink {
34 class IntRect; 34 class IntRect;
35 struct WebScreenInfo; 35 struct WebScreenInfo;
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 and the root view.
44 virtual void invalidateContentsAndRootView(const IntRect& updateRect) = 0;
45
46 // Requests the host invalidate the contents, not the root view. This is the slow path for scrolling.
47 virtual void invalidateContentsForSlowScroll(const IntRect& updateRect) = 0;
48
49 // Methods for doing coordinate conversions to screen coordinates. 43 // Methods for doing coordinate conversions to screen coordinates.
50 virtual IntRect rootViewToScreen(const IntRect&) const = 0; 44 virtual IntRect rootViewToScreen(const IntRect&) const = 0;
51 45
52 virtual WebScreenInfo screenInfo() const = 0; 46 virtual WebScreenInfo screenInfo() const = 0;
53 47
54 virtual void scheduleAnimation() = 0; 48 virtual void scheduleAnimation() = 0;
55 }; 49 };
56 50
57 } // namespace blink 51 } // namespace blink
58 52
59 #endif // SKY_ENGINE_PLATFORM_HOSTWINDOW_H_ 53 #endif // SKY_ENGINE_PLATFORM_HOSTWINDOW_H_
OLDNEW
« no previous file with comments | « sky/engine/core/rendering/RenderLayerScrollableArea.cpp ('k') | sky/engine/platform/Widget.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698