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

Side by Side Diff: components/safe_json/safe_json_parser_messages.h

Issue 1211793002: Rename safe_json_parser component to safe_json. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review Created 5 years, 5 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Message definition file, included multiple times, hence no include guard. 5 // Message definition file, included multiple times, hence no include guard.
6 6
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
(...skipping 17 matching lines...) Expand all
28 // 28 //
29 // WARNING: The result can be of any Value subclass type, but we can't easily 29 // WARNING: The result can be of any Value subclass type, but we can't easily
30 // pass indeterminate value types by const object reference with our IPC macros, 30 // pass indeterminate value types by const object reference with our IPC macros,
31 // so we put the result Value into a ListValue. Handlers should examine the 31 // so we put the result Value into a ListValue. Handlers should examine the
32 // first (and only) element of the ListValue for the actual result. 32 // first (and only) element of the ListValue for the actual result.
33 IPC_MESSAGE_CONTROL1(SafeJsonParserHostMsg_ParseJSON_Succeeded, base::ListValue) 33 IPC_MESSAGE_CONTROL1(SafeJsonParserHostMsg_ParseJSON_Succeeded, base::ListValue)
34 34
35 // Reply when the utility process failed in parsing a JSON string. 35 // Reply when the utility process failed in parsing a JSON string.
36 IPC_MESSAGE_CONTROL1(SafeJsonParserHostMsg_ParseJSON_Failed, 36 IPC_MESSAGE_CONTROL1(SafeJsonParserHostMsg_ParseJSON_Failed,
37 std::string /* error message, if any*/) 37 std::string /* error message, if any*/)
OLDNEW
« no previous file with comments | « components/safe_json/safe_json_parser_message_filter.cc ('k') | components/safe_json/safe_json_parser_messages.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698