Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "sky/engine/config.h" | 5 #include "sky/engine/config.h" |
| 6 #include "sky/engine/core/painting/TransferMode.h" | 6 #include "sky/engine/core/painting/TransferMode.h" |
| 7 | 7 |
| 8 #include "sky/engine/core/script/dom_dart_state.h" | 8 #include "sky/engine/core/script/dom_dart_state.h" |
| 9 #include "sky/engine/tonic/dart_builtin.h" | 9 #include "sky/engine/tonic/dart_builtin.h" |
| 10 #include "sky/engine/tonic/dart_error.h" | 10 #include "sky/engine/tonic/dart_error.h" |
| 11 #include "sky/engine/tonic/dart_value.h" | 11 #include "sky/engine/tonic/dart_value.h" |
| 12 | 12 |
| 13 namespace blink { | 13 namespace blink { |
| 14 | 14 |
| 15 // If this fails, it's because SkXfermode has changed. We need to change | |
| 16 // TransferMode.dart to ensure the TransferMode enum is in sync with the C++ | |
| 17 // values. | |
| 18 COMPILE_ASSERT(SkXfermode::kLastMode == 28, Need_to_update_TransferMode_dart); | |
|
Hixie
2015/06/03 20:10:47
that's great.
| |
| 19 | |
| 15 // Convert dart_mode => SkXfermode::Mode. | 20 // Convert dart_mode => SkXfermode::Mode. |
| 16 SkXfermode::Mode DartConverter<TransferMode>::FromArgumentsWithNullCheck( | 21 SkXfermode::Mode DartConverter<TransferMode>::FromArgumentsWithNullCheck( |
| 17 Dart_NativeArguments args, | 22 Dart_NativeArguments args, |
| 18 int index, | 23 int index, |
| 19 Dart_Handle& exception) { | 24 Dart_Handle& exception) { |
| 20 SkXfermode::Mode result; | 25 SkXfermode::Mode result; |
| 21 | 26 |
| 22 Dart_Handle dart_mode = Dart_GetNativeArgument(args, index); | 27 Dart_Handle dart_mode = Dart_GetNativeArgument(args, index); |
| 23 DCHECK(!LogIfError(dart_mode)); | 28 DCHECK(!LogIfError(dart_mode)); |
| 24 | 29 |
| 25 Dart_Handle value = | 30 Dart_Handle value = |
| 26 Dart_GetField(dart_mode, DOMDartState::Current()->value_handle()); | 31 Dart_GetField(dart_mode, DOMDartState::Current()->index_handle()); |
| 27 | 32 |
| 28 uint64_t mode = 0; | 33 uint64_t mode = 0; |
| 29 Dart_Handle rv = Dart_IntegerToUint64(value, &mode); | 34 Dart_Handle rv = Dart_IntegerToUint64(value, &mode); |
| 30 DCHECK(!LogIfError(rv)); | 35 DCHECK(!LogIfError(rv)); |
| 31 | 36 |
| 32 result = static_cast<SkXfermode::Mode>(mode); | 37 result = static_cast<SkXfermode::Mode>(mode); |
| 33 return result; | 38 return result; |
| 34 } | 39 } |
| 35 | 40 |
| 36 } // namespace blink | 41 } // namespace blink |
| OLD | NEW |