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 524773004: Clean up forward declarations in Source/platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase against ToT Created 6 years, 3 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 | « no previous file | Source/platform/LengthBox.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 13 matching lines...) Expand all
24 */ 24 */
25 25
26 #ifndef HostWindow_h 26 #ifndef HostWindow_h
27 #define HostWindow_h 27 #define HostWindow_h
28 28
29 #include "platform/PlatformExport.h" 29 #include "platform/PlatformExport.h"
30 #include "wtf/FastAllocBase.h" 30 #include "wtf/FastAllocBase.h"
31 #include "wtf/Noncopyable.h" 31 #include "wtf/Noncopyable.h"
32 32
33 namespace blink { 33 namespace blink {
34 class Cursor;
35 class IntPoint;
36 class IntRect; 34 class IntRect;
37 class IntSize;
38 struct WebScreenInfo; 35 struct WebScreenInfo;
39 36
40 class PLATFORM_EXPORT HostWindow { 37 class PLATFORM_EXPORT HostWindow {
41 WTF_MAKE_NONCOPYABLE(HostWindow); WTF_MAKE_FAST_ALLOCATED; 38 WTF_MAKE_NONCOPYABLE(HostWindow); WTF_MAKE_FAST_ALLOCATED;
42 public: 39 public:
43 HostWindow() { } 40 HostWindow() { }
44 virtual ~HostWindow() { } 41 virtual ~HostWindow() { }
45 42
46 // Requests the host invalidate the contents and the root view. 43 // Requests the host invalidate the contents and the root view.
47 virtual void invalidateContentsAndRootView(const IntRect& updateRect) = 0; 44 virtual void invalidateContentsAndRootView(const IntRect& updateRect) = 0;
48 45
49 // Requests the host invalidate the contents, not the root view. This is the slow path for scrolling. 46 // Requests the host invalidate the contents, not the root view. This is the slow path for scrolling.
50 virtual void invalidateContentsForSlowScroll(const IntRect& updateRect) = 0; 47 virtual void invalidateContentsForSlowScroll(const IntRect& updateRect) = 0;
51 48
52 // Methods for doing coordinate conversions to screen coordinates. 49 // Methods for doing coordinate conversions to screen coordinates.
53 virtual IntRect rootViewToScreen(const IntRect&) const = 0; 50 virtual IntRect rootViewToScreen(const IntRect&) const = 0;
54 51
55 virtual WebScreenInfo screenInfo() const = 0; 52 virtual WebScreenInfo screenInfo() const = 0;
56 53
57 virtual void scheduleAnimation() = 0; 54 virtual void scheduleAnimation() = 0;
58 }; 55 };
59 56
60 } // namespace blink 57 } // namespace blink
61 58
62 #endif // HostWindow_h 59 #endif // HostWindow_h
OLDNEW
« no previous file with comments | « no previous file | Source/platform/LengthBox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698