| OLD | NEW |
| 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/browser/extensions/api/declarative/declarative_api_constants.h" | 5 #include "chrome/browser/extensions/api/declarative/declarative_api_constants.h" |
| 6 | 6 |
| 7 namespace extensions { | 7 namespace extensions { |
| 8 namespace declarative_api_constants { | 8 namespace declarative_api_constants { |
| 9 | 9 |
| 10 const char kId[] = "id"; | |
| 11 const char kConditions[] = "conditions"; | |
| 12 const char kActions[] = "actions"; | |
| 13 const char kPriority[] = "priority"; | |
| 14 | |
| 15 const char kInvalidDatatype[] = "Invalid data type in ruleIdentifiers."; | |
| 16 const char kInvalidEventName[] = "Invalid event name."; | 10 const char kInvalidEventName[] = "Invalid event name."; |
| 17 | 11 |
| 18 } // namespace declarative_api_constants | 12 } // namespace declarative_api_constants |
| 19 } // namespace extension | 13 } // namespace extension |
| OLD | NEW |