| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef WEBKIT_COMPOSITOR_BINDINGS_WEBCORE_CONVERT_H_ | |
| 6 #define WEBKIT_COMPOSITOR_BINDINGS_WEBCORE_CONVERT_H_ | |
| 7 | |
| 8 #include "FloatPoint.h" | |
| 9 #include "IntPoint.h" | |
| 10 #include "IntSize.h" | |
| 11 #include <public/WebFloatPoint.h> | |
| 12 #include <public/WebRect.h> | |
| 13 #include <public/WebPoint.h> | |
| 14 #include <public/WebSize.h> | |
| 15 | |
| 16 namespace WebKit { | |
| 17 | |
| 18 WebCore::FloatPoint convert(const WebFloatPoint& point); | |
| 19 WebCore::IntPoint convert(const WebPoint& point); | |
| 20 WebCore::IntSize convert(const WebSize& size); | |
| 21 WebSize convert(const WebCore::IntSize& size); | |
| 22 WebFloatPoint convert(const WebCore::FloatPoint& point); | |
| 23 | |
| 24 } | |
| 25 | |
| 26 #endif // WEBKIT_COMPOSITOR_BINDINGS_WEBCORE_CONVERT_H_ | |
| OLD | NEW |