Chromium Code Reviews| Index: ppapi/native_client/src/trusted/plugin/plugin_error.h |
| =================================================================== |
| --- ppapi/native_client/src/trusted/plugin/plugin_error.h (revision 211556) |
| +++ ppapi/native_client/src/trusted/plugin/plugin_error.h (working copy) |
| @@ -115,23 +115,37 @@ |
| void SetReport(PluginErrorCode error_code, const std::string& message) { |
| error_code_ = error_code; |
| message_ = message; |
| + console_message_ = message; |
| } |
| + void SetReport(PluginErrorCode error_code, const std::string& message, |
|
Mark Seaborn
2013/07/17 18:21:49
Please avoid function overloading when possible: i
halyavin
2013/07/18 09:32:22
Done.
|
| + const std::string& console_message) { |
| + error_code_ = error_code; |
| + message_ = message; |
| + console_message_ = console_message; |
|
Mark Seaborn
2013/07/17 18:21:49
Are you going to concatenate the messages like we
halyavin
2013/07/18 09:32:22
Done.
|
| + } |
| + |
| PluginErrorCode error_code() const { |
| return error_code_; |
| } |
| void PrependMessage(const std::string& prefix) { |
| message_ = prefix + message_; |
| + console_message_ = prefix + console_message_; |
| } |
| const std::string& message() const { |
| return message_; |
| } |
| + const std::string& console_message() const { |
| + return console_message_; |
| + } |
| + |
| private: |
| PluginErrorCode error_code_; |
| std::string message_; |
| + std::string console_message_; |
| NACL_DISALLOW_COPY_AND_ASSIGN(ErrorInfo); |
| }; |