| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2011 Google Inc. | 3 * Copyright 2011 Google Inc. |
| 4 * | 4 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
| 7 */ | 7 */ |
| 8 #include "SkProxyCanvas.h" | 8 #include "SkProxyCanvas.h" |
| 9 | 9 |
| 10 SkProxyCanvas::SkProxyCanvas(SkCanvas* proxy) : fProxy(proxy) { | 10 SkProxyCanvas::SkProxyCanvas(SkCanvas* proxy) : fProxy(proxy) { |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 } | 158 } |
| 159 | 159 |
| 160 void SkProxyCanvas::addComment(const char* kywd, const char* value) { | 160 void SkProxyCanvas::addComment(const char* kywd, const char* value) { |
| 161 fProxy->addComment(kywd, value); | 161 fProxy->addComment(kywd, value); |
| 162 } | 162 } |
| 163 | 163 |
| 164 void SkProxyCanvas::endCommentGroup() { | 164 void SkProxyCanvas::endCommentGroup() { |
| 165 fProxy->endCommentGroup(); | 165 fProxy->endCommentGroup(); |
| 166 } | 166 } |
| 167 | 167 |
| 168 SkBounder* SkProxyCanvas::setBounder(SkBounder* bounder) { | |
| 169 return fProxy->setBounder(bounder); | |
| 170 } | |
| 171 | |
| 172 SkDrawFilter* SkProxyCanvas::setDrawFilter(SkDrawFilter* filter) { | 168 SkDrawFilter* SkProxyCanvas::setDrawFilter(SkDrawFilter* filter) { |
| 173 return fProxy->setDrawFilter(filter); | 169 return fProxy->setDrawFilter(filter); |
| 174 } | 170 } |
| OLD | NEW |