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

Side by Side Diff: Source/core/css/CSSCanvasValue.cpp

Issue 758493004: canvas: make a temporary buffer when a context doesn't exist. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rename to isPaintable() Created 6 years 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2008 Apple 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 m_element = &document->getCSSCanvasElement(m_name); 82 m_element = &document->getCSSCanvasElement(m_name);
83 m_element->addObserver(m_canvasObserver.get()); 83 m_element->addObserver(m_canvasObserver.get());
84 } 84 }
85 return m_element; 85 return m_element;
86 } 86 }
87 87
88 PassRefPtr<Image> CSSCanvasValue::image(RenderObject* renderer, const IntSize& / *size*/) 88 PassRefPtr<Image> CSSCanvasValue::image(RenderObject* renderer, const IntSize& / *size*/)
89 { 89 {
90 ASSERT(clients().contains(renderer)); 90 ASSERT(clients().contains(renderer));
91 HTMLCanvasElement* elt = element(&renderer->document()); 91 HTMLCanvasElement* elt = element(&renderer->document());
92 if (!elt || !elt->buffer()) 92 if (!elt)
93 return nullptr; 93 return nullptr;
94 return elt->copiedImage(FrontBuffer); 94 return elt->copiedImage(FrontBuffer);
95 } 95 }
96 96
97 bool CSSCanvasValue::equals(const CSSCanvasValue& other) const 97 bool CSSCanvasValue::equals(const CSSCanvasValue& other) const
98 { 98 {
99 return m_name == other.m_name; 99 return m_name == other.m_name;
100 } 100 }
101 101
102 void CSSCanvasValue::traceAfterDispatch(Visitor* visitor) 102 void CSSCanvasValue::traceAfterDispatch(Visitor* visitor)
103 { 103 {
104 visitor->trace(m_canvasObserver); 104 visitor->trace(m_canvasObserver);
105 visitor->trace(m_element); 105 visitor->trace(m_element);
106 CSSImageGeneratorValue::traceAfterDispatch(visitor); 106 CSSImageGeneratorValue::traceAfterDispatch(visitor);
107 } 107 }
108 108
109 } // namespace blink 109 } // namespace blink
OLDNEW
« no previous file with comments | « no previous file | Source/core/editing/Editor.cpp » ('j') | Source/core/html/canvas/WebGLRenderingContextBase.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698