| Index: third_party/WebKit/Source/platform/PlatformChromeClient.h
|
| diff --git a/third_party/WebKit/Source/platform/PlatformChromeClient.h b/third_party/WebKit/Source/platform/PlatformChromeClient.h
|
| index 3f939b80f2cf2b00f12068992a23d0a5960ec9f9..f3d99db28dc04eb293b7b5a79318357101afef36 100644
|
| --- a/third_party/WebKit/Source/platform/PlatformChromeClient.h
|
| +++ b/third_party/WebKit/Source/platform/PlatformChromeClient.h
|
| @@ -27,14 +27,13 @@
|
| #define PlatformChromeClient_h
|
|
|
| #include "platform/PlatformExport.h"
|
| +#include "platform/PlatformFrameView.h"
|
| #include "platform/heap/Handle.h"
|
| #include "platform/wtf/Allocator.h"
|
| #include "platform/wtf/Noncopyable.h"
|
|
|
| namespace blink {
|
| class IntRect;
|
| -class FrameViewBase;
|
| -class LocalFrame;
|
|
|
| class PLATFORM_EXPORT PlatformChromeClient
|
| : public GarbageCollectedFinalized<PlatformChromeClient> {
|
| @@ -50,13 +49,13 @@ class PLATFORM_EXPORT PlatformChromeClient
|
|
|
| // Converts the rect from the viewport coordinates to screen coordinates.
|
| virtual IntRect ViewportToScreen(const IntRect&,
|
| - const FrameViewBase*) const = 0;
|
| + const PlatformFrameView*) const = 0;
|
|
|
| // Converts the scalar value from the window coordinates to the viewport
|
| // scale.
|
| virtual float WindowToViewportScalar(const float) const = 0;
|
|
|
| - virtual void ScheduleAnimation(LocalFrame*) = 0;
|
| + virtual void ScheduleAnimation(const PlatformFrameView*) = 0;
|
| };
|
|
|
| } // namespace blink
|
|
|