| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2010 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/automation/extension_automation_constants.h" | |
| 6 | |
| 7 namespace extension_automation_constants { | |
| 8 | |
| 9 const char kAutomationOrigin[] = "__priv_xtapi"; | |
| 10 const char kAutomationRequestIdKey[] = "rqid"; | |
| 11 | |
| 12 const char kAutomationHasCallbackKey[] = "hascb"; | |
| 13 const char kAutomationErrorKey[] = "err"; | |
| 14 const char kAutomationNameKey[] = "name"; | |
| 15 const char kAutomationArgsKey[] = "args"; | |
| 16 const char kAutomationResponseKey[] = "res"; | |
| 17 const char kAutomationRequestTarget[] = "__priv_xtreq"; | |
| 18 const char kAutomationResponseTarget[] = "__priv_xtres"; | |
| 19 | |
| 20 const char kAutomationConnectionIdKey[] = "connid"; | |
| 21 const char kAutomationMessageDataKey[] = "data"; | |
| 22 const char kAutomationExtensionIdKey[] = "extid"; | |
| 23 const char kAutomationPortIdKey[] = "portid"; | |
| 24 const char kAutomationChannelNameKey[] = "chname"; | |
| 25 const char kAutomationTabJsonKey[] = "tab"; | |
| 26 | |
| 27 const char kAutomationPortRequestTarget[] = "__priv_prtreq"; | |
| 28 const char kAutomationPortResponseTarget[] = "__priv_prtres"; | |
| 29 | |
| 30 const char kAutomationBrowserEventRequestTarget[] = "__priv_evtreq"; | |
| 31 | |
| 32 } // namespace extension_automation_constants | |
| OLD | NEW |