summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/extension_idle_api_constants.cc
diff options
context:
space:
mode:
authorviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-13 02:45:23 +0000
committerviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-13 02:45:23 +0000
commit671b7ab28cfac6fb097bf3486ef8ad9774ab1423 (patch)
tree8e48e7fcd80145ed974479bca8a1c33da2f4eeb5 /chrome/browser/extensions/extension_idle_api_constants.cc
parent59fffe5ef6ecaa291f574916f07e412fa90b027b (diff)
downloadchromium_src-671b7ab28cfac6fb097bf3486ef8ad9774ab1423.zip
chromium_src-671b7ab28cfac6fb097bf3486ef8ad9774ab1423.tar.gz
chromium_src-671b7ab28cfac6fb097bf3486ef8ad9774ab1423.tar.bz2
Convert wide strings in extension_idle_api_constants and extension_infobar_module_constants.
BUG=23581 TEST=builds and passes tests Review URL: http://codereview.chromium.org/3160011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55979 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/extension_idle_api_constants.cc')
-rw-r--r--chrome/browser/extensions/extension_idle_api_constants.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/chrome/browser/extensions/extension_idle_api_constants.cc b/chrome/browser/extensions/extension_idle_api_constants.cc
index cf0c8e78..f9087b2 100644
--- a/chrome/browser/extensions/extension_idle_api_constants.cc
+++ b/chrome/browser/extensions/extension_idle_api_constants.cc
@@ -6,13 +6,13 @@
namespace extension_idle_api_constants {
-const wchar_t kSecondsKey[] = L"seconds";
-const wchar_t kStateKey[] = L"state";
+const char kSecondsKey[] = "seconds";
+const char kStateKey[] = "state";
const char kOnStateChanged[] = "idle.onStateChanged";
-const wchar_t kStateActive[] = L"active";
-const wchar_t kStateIdle[] = L"idle";
-const wchar_t kStateLocked[] = L"locked";
+const char kStateActive[] = "active";
+const char kStateIdle[] = "idle";
+const char kStateLocked[] = "locked";
} // namespace extension_idle_api_constants