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

Unified Diff: tools/skiaserve/urlhandlers/ImgHandler.cpp

Issue 1741043003: A bit more privacy for SkiaServe's Request (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/skiaserve/urlhandlers/DownloadHandler.cpp ('k') | tools/skiaserve/urlhandlers/PostHandler.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/skiaserve/urlhandlers/ImgHandler.cpp
diff --git a/tools/skiaserve/urlhandlers/ImgHandler.cpp b/tools/skiaserve/urlhandlers/ImgHandler.cpp
index 68828267fbdf6a44384c0f3f4b4765ac60a81e95..3e390fe8325ae644426d395b63c643581851d140 100644
--- a/tools/skiaserve/urlhandlers/ImgHandler.cpp
+++ b/tools/skiaserve/urlhandlers/ImgHandler.cpp
@@ -25,7 +25,7 @@ int ImgHandler::handle(Request* request, MHD_Connection* connection,
SkTArray<SkString> commands;
SkStrSplit(url, "/", &commands);
- if (!request->fPicture.get() || commands.count() > 2) {
+ if (!request->hasPicture() || commands.count() > 2) {
return MHD_NO;
}
« no previous file with comments | « tools/skiaserve/urlhandlers/DownloadHandler.cpp ('k') | tools/skiaserve/urlhandlers/PostHandler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698