Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(98)

Side by Side Diff: chrome/browser/automation/extension_automation_constants.cc

Issue 6756044: Remove extension automation support that was used only by CEEE. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to lkgr. Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698