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

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

Issue 1158883004: Add TransferMode to dart:sky, and use it instead of passing ints around. (Closed) Base URL: git@github.com:/domokit/mojo.git@master
Patch Set: rm comment Created 5 years, 7 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: sky/engine/core/painting/TransferMode.h
diff --git a/sky/engine/core/painting/TransferMode.h b/sky/engine/core/painting/TransferMode.h
new file mode 100644
index 0000000000000000000000000000000000000000..6916bdac7623aa49de5d72672e909b11ff08228c
--- /dev/null
+++ b/sky/engine/core/painting/TransferMode.h
@@ -0,0 +1,30 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// 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_TRANSFERMODE_H_
+#define SKY_ENGINE_CORE_PAINTING_TRANSFERMODE_H_
+
+#include "sky/engine/core/painting/Rect.h"
+#include "sky/engine/tonic/dart_wrappable.h"
+#include "sky/engine/wtf/PassRefPtr.h"
+#include "sky/engine/wtf/RefCounted.h"
+#include "third_party/skia/include/core/SkXfermode.h"
+
+namespace blink {
+
+class TransferMode {
eseidel 2015/06/02 00:22:18 A bit strange that we can't just typedef this. Mo
Matt Perry 2015/06/02 18:28:54 We can't because C++ doesn't have strong typedefs
+ public:
+ SkXfermode::Mode sk_mode;
+};
+
+template<>
+struct DartConverter<TransferMode, void> {
+ static TransferMode FromArgumentsWithNullCheck(Dart_NativeArguments args,
+ int index,
+ Dart_Handle& exception);
+};
+
+} // namespace blink
+
+#endif // SKY_ENGINE_CORE_PAINTING_TRANSFERMODE_H_

Powered by Google App Engine
This is Rietveld 408576698