diff options
author | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-13 02:29:30 +0000 |
---|---|---|
committer | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-13 02:29:30 +0000 |
commit | 315e7d45e23bc4db2a56b4954b8343ef17676ac5 (patch) | |
tree | b6213f52635a062df2f2fe3302e37f881a118ad6 /chrome/browser/extensions/extension_bookmarks_module_constants.cc | |
parent | c9b6a65a0bf384651604e3d4e8625ae0483bf8e9 (diff) | |
download | chromium_src-315e7d45e23bc4db2a56b4954b8343ef17676ac5.zip chromium_src-315e7d45e23bc4db2a56b4954b8343ef17676ac5.tar.gz chromium_src-315e7d45e23bc4db2a56b4954b8343ef17676ac5.tar.bz2 |
Convert wide string constants in extension_bookmarks_module_constants.
BUG=23581
TEST=builds and passes tests
Review URL: http://codereview.chromium.org/3169011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55977 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/extension_bookmarks_module_constants.cc')
-rw-r--r-- | chrome/browser/extensions/extension_bookmarks_module_constants.cc | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/chrome/browser/extensions/extension_bookmarks_module_constants.cc b/chrome/browser/extensions/extension_bookmarks_module_constants.cc index 0fcb74b..670b5ec 100644 --- a/chrome/browser/extensions/extension_bookmarks_module_constants.cc +++ b/chrome/browser/extensions/extension_bookmarks_module_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. @@ -6,21 +6,21 @@ namespace extension_bookmarks_module_constants { -const wchar_t kIdKey[] = L"id"; -const wchar_t kIndexKey[] = L"index"; -const wchar_t kParentIdKey[] = L"parentId"; -const wchar_t kOldIndexKey[] = L"oldIndex"; -const wchar_t kOldParentIdKey[] = L"oldParentId"; -const wchar_t kUrlKey[] = L"url"; -const wchar_t kTitleKey[] = L"title"; -const wchar_t kChildrenKey[] = L"children"; -const wchar_t kChildIdsKey[] = L"childIds"; -const wchar_t kRecursiveKey[] = L"recursive"; -const wchar_t kDateAddedKey[] = L"dateAdded"; -const wchar_t kDateGroupModifiedKey[] = L"dateGroupModified"; +const char kIdKey[] = "id"; +const char kIndexKey[] = "index"; +const char kParentIdKey[] = "parentId"; +const char kOldIndexKey[] = "oldIndex"; +const char kOldParentIdKey[] = "oldParentId"; +const char kUrlKey[] = "url"; +const char kTitleKey[] = "title"; +const char kChildrenKey[] = "children"; +const char kChildIdsKey[] = "childIds"; +const char kRecursiveKey[] = "recursive"; +const char kDateAddedKey[] = "dateAdded"; +const char kDateGroupModifiedKey[] = "dateGroupModified"; // TODO(arv): Move bookmark manager related constants out of this file. -const wchar_t kSameProfileKey[] = L"sameProfile"; -const wchar_t kElementsKey[] = L"elements"; +const char kSameProfileKey[] = "sameProfile"; +const char kElementsKey[] = "elements"; const char kNoNodeError[] = "Can't find bookmark for id."; const char kNoParentError[] = "Can't find parent bookmark for id."; |