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

Unified Diff: third_party/WebKit/Source/platform/HostWindow.h

Issue 2826893003: Remove ScrollableArea::GetFrameViewBase and move ScheduleAnimation into subclasses. (Closed)
Patch Set: Remove UNREACHED Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/HostWindow.h
diff --git a/third_party/WebKit/Source/platform/HostWindow.h b/third_party/WebKit/Source/platform/HostWindow.h
index 12cc16a0f1122a0ce098a7421bed5fd7d9376dcb..3ccc0ccf887c142fe937a38ed93f21209c7e7e52 100644
--- a/third_party/WebKit/Source/platform/HostWindow.h
+++ b/third_party/WebKit/Source/platform/HostWindow.h
@@ -34,6 +34,7 @@
namespace blink {
class IntRect;
class FrameViewBase;
+class LocalFrame;
class PLATFORM_EXPORT HostWindow
: public GarbageCollectedFinalized<HostWindow> {
@@ -55,7 +56,7 @@ class PLATFORM_EXPORT HostWindow
// scale.
virtual float WindowToViewportScalar(const float) const = 0;
- virtual void ScheduleAnimation(FrameViewBase*) = 0;
+ virtual void ScheduleAnimation(LocalFrame*) = 0;
dcheng 2017/04/19 11:26:25 The reason we didn't plumb through Frame to begin
joelhockey 2017/04/19 11:33:17 Yes, that makes sense. Could there be an empty Pl
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698