OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 24 matching lines...) Expand all Loading... |
35 #include "V8CanvasPattern.h" | 35 #include "V8CanvasPattern.h" |
36 #include "V8HTMLCanvasElement.h" | 36 #include "V8HTMLCanvasElement.h" |
37 #include "V8HTMLImageElement.h" | 37 #include "V8HTMLImageElement.h" |
38 #include "V8HTMLVideoElement.h" | 38 #include "V8HTMLVideoElement.h" |
39 #include "V8ImageData.h" | 39 #include "V8ImageData.h" |
40 #include "bindings/v8/V8Binding.h" | 40 #include "bindings/v8/V8Binding.h" |
41 #include "core/html/canvas/CanvasGradient.h" | 41 #include "core/html/canvas/CanvasGradient.h" |
42 #include "core/html/canvas/CanvasPattern.h" | 42 #include "core/html/canvas/CanvasPattern.h" |
43 #include "core/html/canvas/CanvasRenderingContext2D.h" | 43 #include "core/html/canvas/CanvasRenderingContext2D.h" |
44 #include "core/html/canvas/CanvasStyle.h" | 44 #include "core/html/canvas/CanvasStyle.h" |
45 #include "core/platform/graphics/FloatRect.h" | 45 #include "platform/geometry/FloatRect.h" |
46 | 46 |
47 namespace WebCore { | 47 namespace WebCore { |
48 | 48 |
49 static v8::Handle<v8::Value> toV8Object(CanvasStyle* style, v8::Handle<v8::Objec
t> creationContext, v8::Isolate* isolate) | 49 static v8::Handle<v8::Value> toV8Object(CanvasStyle* style, v8::Handle<v8::Objec
t> creationContext, v8::Isolate* isolate) |
50 { | 50 { |
51 if (style->canvasGradient()) | 51 if (style->canvasGradient()) |
52 return toV8(style->canvasGradient(), creationContext, isolate); | 52 return toV8(style->canvasGradient(), creationContext, isolate); |
53 | 53 |
54 if (style->canvasPattern()) | 54 if (style->canvasPattern()) |
55 return toV8(style->canvasPattern(), creationContext, isolate); | 55 return toV8(style->canvasPattern(), creationContext, isolate); |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 void V8CanvasRenderingContext2D::fillStyleAttributeSetterCustom(v8::Local<v8::St
ring> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<void>& in
fo) | 92 void V8CanvasRenderingContext2D::fillStyleAttributeSetterCustom(v8::Local<v8::St
ring> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<void>& in
fo) |
93 { | 93 { |
94 CanvasRenderingContext2D* impl = V8CanvasRenderingContext2D::toNative(info.H
older()); | 94 CanvasRenderingContext2D* impl = V8CanvasRenderingContext2D::toNative(info.H
older()); |
95 if (value->IsString()) | 95 if (value->IsString()) |
96 impl->setFillColor(toWebCoreString(value.As<v8::String>())); | 96 impl->setFillColor(toWebCoreString(value.As<v8::String>())); |
97 else | 97 else |
98 impl->setFillStyle(toCanvasStyle(value, info.GetIsolate())); | 98 impl->setFillStyle(toCanvasStyle(value, info.GetIsolate())); |
99 } | 99 } |
100 | 100 |
101 } // namespace WebCore | 101 } // namespace WebCore |
OLD | NEW |