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

Unified Diff: sky/engine/core/painting/Offset.h

Issue 1214833004: Split Size into Size and Offset. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « sky/engine/core/painting/Image.idl ('k') | sky/engine/core/painting/Offset.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/painting/Offset.h
diff --git a/sky/engine/core/painting/Point.h b/sky/engine/core/painting/Offset.h
similarity index 52%
copy from sky/engine/core/painting/Point.h
copy to sky/engine/core/painting/Offset.h
index c08c48e72d939ea7fb761595c774204c52d14dca..2a0acf22b0290ac56416aeb050f98fc2de51f192 100644
--- a/sky/engine/core/painting/Point.h
+++ b/sky/engine/core/painting/Offset.h
@@ -2,29 +2,29 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef SKY_ENGINE_CORE_PAINTING_POINT_H_
-#define SKY_ENGINE_CORE_PAINTING_POINT_H_
+#ifndef SKY_ENGINE_CORE_PAINTING_OFFSET_H_
+#define SKY_ENGINE_CORE_PAINTING_OFFSET_H_
#include "dart/runtime/include/dart_api.h"
#include "sky/engine/tonic/dart_converter.h"
-#include "third_party/skia/include/core/SkPoint.h"
+#include "third_party/skia/include/core/SkSize.h"
namespace blink {
-// Very simple wrapper for SkPoint to add a null state.
-class Point {
+// Very simple wrapper for SkSize to add a null state.
+class Offset {
public:
- SkPoint sk_point;
+ SkSize sk_size;
bool is_null;
};
template <>
-struct DartConverter<Point> {
- static Point FromDart(Dart_Handle handle);
- static Point FromArgumentsWithNullCheck(Dart_NativeArguments args,
+struct DartConverter<Offset> {
+ static Offset FromDart(Dart_Handle handle);
+ static Offset FromArgumentsWithNullCheck(Dart_NativeArguments args,
int index,
Dart_Handle& exception);
};
} // namespace blink
-#endif // SKY_ENGINE_CORE_PAINTING_POINT_H_
+#endif // SKY_ENGINE_CORE_PAINTING_OFFSET_H_
« no previous file with comments | « sky/engine/core/painting/Image.idl ('k') | sky/engine/core/painting/Offset.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698