diff options
author | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-14 17:25:32 +0000 |
---|---|---|
committer | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-14 17:25:32 +0000 |
commit | a748ff66516fb10dc810589036e4f2c5ccd07f93 (patch) | |
tree | d269ac5b2ec729f54169a3fd42ea736a4e7894a3 /chrome/browser/automation/extension_automation_constants.cc | |
parent | 96d1ed0c4184d446832d5b04ed4f02994b79ae03 (diff) | |
download | chromium_src-a748ff66516fb10dc810589036e4f2c5ccd07f93.zip chromium_src-a748ff66516fb10dc810589036e4f2c5ccd07f93.tar.gz chromium_src-a748ff66516fb10dc810589036e4f2c5ccd07f93.tar.bz2 |
Convert remaining wide extension_automation_constants keys.
BUG=23581
TEST=builds and passes tests
Review URL: http://codereview.chromium.org/3187003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56143 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/automation/extension_automation_constants.cc')
-rw-r--r-- | chrome/browser/automation/extension_automation_constants.cc | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/chrome/browser/automation/extension_automation_constants.cc b/chrome/browser/automation/extension_automation_constants.cc index c513945..c4e6fce 100644 --- a/chrome/browser/automation/extension_automation_constants.cc +++ b/chrome/browser/automation/extension_automation_constants.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -7,22 +7,22 @@ namespace extension_automation_constants { const char kAutomationOrigin[] = "__priv_xtapi"; -const wchar_t kAutomationRequestIdKey[] = L"rqid"; +const char kAutomationRequestIdKey[] = "rqid"; -const wchar_t kAutomationHasCallbackKey[] = L"hascb"; -const wchar_t kAutomationErrorKey[] = L"err"; -const wchar_t kAutomationNameKey[] = L"name"; -const wchar_t kAutomationArgsKey[] = L"args"; -const wchar_t kAutomationResponseKey[] = L"res"; +const char kAutomationHasCallbackKey[] = "hascb"; +const char kAutomationErrorKey[] = "err"; +const char kAutomationNameKey[] = "name"; +const char kAutomationArgsKey[] = "args"; +const char kAutomationResponseKey[] = "res"; const char kAutomationRequestTarget[] = "__priv_xtreq"; const char kAutomationResponseTarget[] = "__priv_xtres"; -const wchar_t kAutomationConnectionIdKey[] = L"connid"; -const wchar_t kAutomationMessageDataKey[] = L"data"; -const wchar_t kAutomationExtensionIdKey[] = L"extid"; -const wchar_t kAutomationPortIdKey[] = L"portid"; -const wchar_t kAutomationChannelNameKey[] = L"chname"; -const wchar_t kAutomationTabJsonKey[] = L"tab"; +const char kAutomationConnectionIdKey[] = "connid"; +const char kAutomationMessageDataKey[] = "data"; +const char kAutomationExtensionIdKey[] = "extid"; +const char kAutomationPortIdKey[] = "portid"; +const char kAutomationChannelNameKey[] = "chname"; +const char kAutomationTabJsonKey[] = "tab"; const char kAutomationPortRequestTarget[] = "__priv_prtreq"; const char kAutomationPortResponseTarget[] = "__priv_prtres"; |