Alex Vakulenko | c30f821 | 2014-07-22 07:27:22 -0700 | [diff] [blame] | 1 | // Copyright 2014 The Chromium OS 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 "buffet/error_codes.h" |
| 6 | |
| 7 | namespace buffet { |
| 8 | namespace errors { |
| 9 | |
| 10 | namespace json { |
| 11 | const char kDomain[] = "json_parser"; |
| 12 | const char kParseError[] = "json_parse_error"; |
| 13 | const char kObjectExpected[] = "json_object_expected"; |
| 14 | } // namespace json |
| 15 | |
| 16 | namespace file_system { |
| 17 | const char kDomain[] = "file_system"; |
| 18 | const char kFileReadError[] = "file_read_error"; |
| 19 | } // namespace file_system |
| 20 | |
| 21 | } // namespace errors |
| 22 | } // namespace buffet |