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

Side by Side Diff: bench/ResultsWriter.cpp

Issue 306483010: Revert of PictureBenchmark JSON logging (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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 | « bench/ResultsWriter.h ('k') | bench/TimerData.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright 2014 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 *
7 * Helper functions for result writing operations.
8 */
9
10 #include "ResultsWriter.h"
11
12 #ifdef SK_BUILD_JSON_WRITER
13
14 Json::Value* SkFindNamedNode(Json::Value* root, const char name[]) {
15 Json::Value* search_results = NULL;
16 for(Json::Value::iterator iter = root->begin();
17 iter!= root->end(); ++iter) {
18 if(SkString(name).equals((*iter)["name"].asCString())) {
19 search_results = &(*iter);
20 break;
21 }
22 }
23
24 if(search_results != NULL) {
25 return search_results;
26 } else {
27 Json::Value* new_val = &(root->append(Json::Value()));
28 (*new_val)["name"] = name;
29 return new_val;
30 }
31 }
32
33 #endif // SK_BUILD_JSON_WRITER
OLDNEW
« no previous file with comments | « bench/ResultsWriter.h ('k') | bench/TimerData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698