| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome/browser/extensions/api/declarative/declarative_api_constants.h" | |
| 6 | |
| 7 namespace extensions { | |
| 8 namespace declarative_api_constants { | |
| 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."; | |
| 17 | |
| 18 } // namespace declarative_api_constants | |
| 19 } // namespace extension | |
| OLD | NEW |