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

Side by Side Diff: src/utils/SkProxyCanvas.cpp

Issue 312553006: remove SkBounder -- unused and unloved (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: address review comments Created 6 years, 6 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 unified diff | Download patch
« no previous file with comments | « src/utils/SkNWayCanvas.cpp ('k') | src/views/SkWindow.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « src/utils/SkNWayCanvas.cpp ('k') | src/views/SkWindow.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698