Index: chrome/common/extensions/extension_commands.h |
=================================================================== |
--- chrome/common/extensions/extension_commands.h (revision 137495) |
+++ chrome/common/extensions/extension_commands.h (working copy) |
@@ -36,7 +36,7 @@ |
// Accessors: |
const std::string& command_name() const { return command_name_; } |
const ui::Accelerator& accelerator() const { return accelerator_; } |
- const std::string& description() const { return description_; } |
+ const string16& description() const { return description_; } |
private: |
ui::Accelerator ParseImpl(const std::string& shortcut, |
@@ -45,7 +45,7 @@ |
string16* error); |
std::string command_name_; |
ui::Accelerator accelerator_; |
- std::string description_; |
+ string16 description_; |
}; |
// A mapping of command name (std::string) to a command object. |