Simplify update error message support HTML.
commit5895b1965309229401de2afc2c815890d51ff4f5
authorbcwhite <bcwhite@chromium.org>
Fri, 10 Jul 2015 12:43:27 +0000 (10 05:43 -0700)
committerCommit bot <commit-bot@chromium.org>
Fri, 10 Jul 2015 12:44:02 +0000 (10 12:44 +0000)
tree0241b196b20031654a2d697ae312185dd5449681
parentae19e352c510ccaf6e9b9aa3c211f63d5fb51528
Simplify update error message support HTML.

Errors from the update mechanism were appearing twice, once
included in the error string generated in google_update_win
and once in OnError() of version_updater_win.  This caused
redundant information like this:

Update failed (error: 1)An error occurred while checking for updates: Update check failed to start (error code 1: 0x80004005).

Now this:

An error occurred while checking for updates: Update check failed to start (error code 1: 0x80004005).

In addition, this allows removal of the check against a specific
error code since that comes with an actual error message already.

The error message has been explicitly stated as being HTML, making
it okay for callers to include mark-up such as links to more info.

For more information, see the discussion on this CL:
https://codereview.chromium.org/1212783003/

BUG=489801

Review URL: https://codereview.chromium.org/1214603005

Cr-Commit-Position: refs/heads/master@{#338282}
chrome/browser/google/google_update_win.cc
chrome/browser/google/google_update_win.h
chrome/browser/ui/webui/help/version_updater_win.cc