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

Side by Side Diff: components/safe_json/utility/safe_json_parser_mojo_impl.cc

Issue 1948303002: Re-land: Convert the utility process JSON parser into a Mojo service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 | « components/safe_json/utility/safe_json_parser_mojo_impl.h ('k') | components/typemaps.gni » ('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 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "components/safe_json/utility/safe_json_parser_mojo_impl.h"
6
7 #include <memory>
8 #include <utility>
9
10 #include "base/json/json_reader.h"
11 #include "base/values.h"
12
13 namespace safe_json {
14
15 // static
16 void SafeJsonParserMojoImpl::Create(
17 mojo::InterfaceRequest<mojom::SafeJsonParser> request) {
18 new SafeJsonParserMojoImpl(std::move(request));
19 }
20
21 SafeJsonParserMojoImpl::SafeJsonParserMojoImpl(
22 mojo::InterfaceRequest<mojom::SafeJsonParser> request)
23 : binding_(this, std::move(request)) {}
24
25 SafeJsonParserMojoImpl::~SafeJsonParserMojoImpl() {
26 }
27
28 void SafeJsonParserMojoImpl::Parse(const mojo::String& json,
29 const ParseCallback& callback) {
30 int error_code;
31 std::string error;
32 std::unique_ptr<base::Value> value = base::JSONReader::ReadAndReturnError(
33 json.get(), base::JSON_PARSE_RFC, &error_code, &error);
34 base::ListValue wrapper;
35 if (value) {
36 wrapper.Append(std::move(value));
37 callback.Run(wrapper, nullptr);
38 } else {
39 callback.Run(wrapper, error);
40 }
41 }
42
43 } // namespace safe_json
OLDNEW
« no previous file with comments | « components/safe_json/utility/safe_json_parser_mojo_impl.h ('k') | components/typemaps.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698