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

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: rebase 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
« no previous file with comments | « sky/engine/core/painting/DrawLooperLayerInfo.idl ('k') | sky/engine/core/painting/TransferMode.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 {
+ 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_
« no previous file with comments | « sky/engine/core/painting/DrawLooperLayerInfo.idl ('k') | sky/engine/core/painting/TransferMode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698