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

Side by Side Diff: tools/skiaserve/skiaserve.cpp

Issue 1745063002: Render batch bounds as stroke rects (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: tweaks Created 4 years, 9 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 | « tools/debugger/SkDebugCanvas.cpp ('k') | tools/skiaserve/urlhandlers/BatchBoundsHandler.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 * Copyright 2016 Google Inc. 2 * Copyright 2016 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "Request.h" 8 #include "Request.h"
9 #include "Response.h" 9 #include "Response.h"
10 10
(...skipping 21 matching lines...) Expand all
32 fHandlers.push_back(new PostHandler); 32 fHandlers.push_back(new PostHandler);
33 fHandlers.push_back(new ImgHandler); 33 fHandlers.push_back(new ImgHandler);
34 fHandlers.push_back(new ClipAlphaHandler); 34 fHandlers.push_back(new ClipAlphaHandler);
35 fHandlers.push_back(new EnableGPUHandler); 35 fHandlers.push_back(new EnableGPUHandler);
36 fHandlers.push_back(new CmdHandler); 36 fHandlers.push_back(new CmdHandler);
37 fHandlers.push_back(new InfoHandler); 37 fHandlers.push_back(new InfoHandler);
38 fHandlers.push_back(new DownloadHandler); 38 fHandlers.push_back(new DownloadHandler);
39 fHandlers.push_back(new DataHandler); 39 fHandlers.push_back(new DataHandler);
40 fHandlers.push_back(new BreakHandler); 40 fHandlers.push_back(new BreakHandler);
41 fHandlers.push_back(new BatchesHandler); 41 fHandlers.push_back(new BatchesHandler);
42 fHandlers.push_back(new BatchBoundsHandler);
42 } 43 }
43 44
44 ~UrlManager() { 45 ~UrlManager() {
45 for (int i = 0; i < fHandlers.count(); i++) { delete fHandlers[i]; } 46 for (int i = 0; i < fHandlers.count(); i++) { delete fHandlers[i]; }
46 } 47 }
47 48
48 // This is clearly not efficient for a large number of urls and handlers 49 // This is clearly not efficient for a large number of urls and handlers
49 int invoke(Request* request, MHD_Connection* connection, const char* url, co nst char* method, 50 int invoke(Request* request, MHD_Connection* connection, const char* url, co nst char* method,
50 const char* upload_data, size_t* upload_data_size) const { 51 const char* upload_data, size_t* upload_data_size) const {
51 for (int i = 0; i < fHandlers.count(); i++) { 52 for (int i = 0; i < fHandlers.count(); i++) {
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 MHD_stop_daemon(daemon); 95 MHD_stop_daemon(daemon);
95 return 0; 96 return 0;
96 } 97 }
97 98
98 #if !defined SK_BUILD_FOR_IOS 99 #if !defined SK_BUILD_FOR_IOS
99 int main(int argc, char** argv) { 100 int main(int argc, char** argv) {
100 SkCommandLineFlags::Parse(argc, argv); 101 SkCommandLineFlags::Parse(argc, argv);
101 return skiaserve_main(); 102 return skiaserve_main();
102 } 103 }
103 #endif 104 #endif
OLDNEW
« no previous file with comments | « tools/debugger/SkDebugCanvas.cpp ('k') | tools/skiaserve/urlhandlers/BatchBoundsHandler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698