| Index: Source/core/loader/EmptyClients.h
|
| diff --git a/Source/core/loader/EmptyClients.h b/Source/core/loader/EmptyClients.h
|
| index 7b893b3edb027d598aed548c8a0f56ba1e282e85..3dce7deeae2480c197b2d95b7a3b44ac20c787c2 100644
|
| --- a/Source/core/loader/EmptyClients.h
|
| +++ b/Source/core/loader/EmptyClients.h
|
| @@ -39,7 +39,7 @@
|
| #include "core/page/Page.h"
|
| #include "core/page/SpellCheckerClient.h"
|
| #include "platform/DragImage.h"
|
| -#include "platform/geometry/FloatRect.h"
|
| +#include "platform/geometry/IntRect.h"
|
| #include "platform/heap/Handle.h"
|
| #include "platform/network/ResourceError.h"
|
| #include "platform/text/TextCheckerClient.h"
|
| @@ -70,10 +70,10 @@ public:
|
| virtual void chromeDestroyed() override { }
|
|
|
| virtual void* webView() const override { return 0; }
|
| - virtual void setWindowRect(const FloatRect&) override { }
|
| - virtual FloatRect windowRect() override { return FloatRect(); }
|
| + virtual void setWindowRect(const IntRect&) override { }
|
| + virtual IntRect windowRect() override { return IntRect(); }
|
|
|
| - virtual FloatRect pageRect() override { return FloatRect(); }
|
| + virtual IntRect pageRect() override { return IntRect(); }
|
|
|
| virtual void focus() override { }
|
|
|
|
|