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

Side by Side Diff: components/json_schema/json_schema_constants.cc

Issue 22807004: Moved chrome/common/json_schema to components/json_schema. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed android isolates Created 7 years, 4 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #include "chrome/common/json_schema/json_schema_constants.h" 5 #include "components/json_schema/json_schema_constants.h"
6 6
7 namespace json_schema_constants { 7 namespace json_schema_constants {
8 8
9 const char kAdditionalProperties[] = "additionalProperties"; 9 const char kAdditionalProperties[] = "additionalProperties";
10 const char kAny[] = "any"; 10 const char kAny[] = "any";
11 const char kArray[] = "array"; 11 const char kArray[] = "array";
12 const char kBoolean[] = "boolean"; 12 const char kBoolean[] = "boolean";
13 const char kChoices[] = "choices"; 13 const char kChoices[] = "choices";
14 const char kDescription[] = "description"; 14 const char kDescription[] = "description";
15 const char kEnum[] = "enum"; 15 const char kEnum[] = "enum";
(...skipping 13 matching lines...) Expand all
29 const char kPattern[] = "pattern"; 29 const char kPattern[] = "pattern";
30 const char kPatternProperties[] = "patternProperties"; 30 const char kPatternProperties[] = "patternProperties";
31 const char kProperties[] = "properties"; 31 const char kProperties[] = "properties";
32 const char kRef[] = "$ref"; 32 const char kRef[] = "$ref";
33 const char kSchema[] = "$schema"; 33 const char kSchema[] = "$schema";
34 const char kString[] = "string"; 34 const char kString[] = "string";
35 const char kTitle[] = "title"; 35 const char kTitle[] = "title";
36 const char kType[] = "type"; 36 const char kType[] = "type";
37 37
38 } // namespace json_schema_constants 38 } // namespace json_schema_constants
OLDNEW
« no previous file with comments | « components/json_schema/json_schema_constants.h ('k') | components/json_schema/json_schema_validator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698