Alex Vakulenko | 07216fe | 2014-09-19 15:31:09 -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/states/error_codes.h" |
| 6 | |
| 7 | namespace buffet { |
| 8 | namespace errors { |
| 9 | namespace state { |
| 10 | |
| 11 | const char kDomain[] = "buffet_state"; |
| 12 | |
| 13 | const char kPackageNameMissing[] = "package_name_missing"; |
| 14 | const char kPropertyNameMissing[] = "property_name_missing"; |
| 15 | const char kPropertyNotDefined[] = "property_not_defined"; |
| 16 | const char kPropertyRedefinition[] = "property_redefinition"; |
| 17 | |
| 18 | } // namespace state |
| 19 | } // namespace errors |
| 20 | } // namespace buffet |