diff options
-rw-r--r-- | src/client/windows/sender/crash_report_sender.h | 4 | ||||
-rw-r--r-- | src/common/windows/http_upload.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/client/windows/sender/crash_report_sender.h b/src/client/windows/sender/crash_report_sender.h index 39267243..19563b02 100644 --- a/src/client/windows/sender/crash_report_sender.h +++ b/src/client/windows/sender/crash_report_sender.h @@ -31,7 +31,7 @@ #define CLIENT_WINDOWS_SENDER_CRASH_REPORT_SENDER_H__ // CrashReportSender is a "static" class which provides an API to upload -// crash reports via HTTP. A crash report is formatted as a multipart POST +// crash reports via HTTP(S). A crash report is formatted as a multipart POST // request, which contains a set of caller-supplied string key/value pairs, // and a minidump file to upload. // @@ -52,7 +52,7 @@ class CrashReportSender { // name value pairs, as a multipart POST request to the given URL. // Parameter names must contain only printable ASCII characters, // and may not contain a quote (") character. - // Only HTTP URLs are currently supported. Returns true on success. + // Only HTTP(S) URLs are currently supported. Returns true on success. // TODO(bryner): we should expose the response to the caller. static bool SendCrashReport(const wstring &url, const map<wstring, wstring> ¶meters, diff --git a/src/common/windows/http_upload.h b/src/common/windows/http_upload.h index 4ce581ea..d09db11d 100644 --- a/src/common/windows/http_upload.h +++ b/src/common/windows/http_upload.h @@ -27,7 +27,7 @@ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// HTTPUpload provides a "nice" API to send a multipart HTTP POST +// HTTPUpload provides a "nice" API to send a multipart HTTP(S) POST // request using wininet. It currently supports requests that contain // a set of string parameters (key/value pairs), and a file to upload. @@ -52,7 +52,7 @@ class HTTPUpload { // (i.e. it corresponds to the name= attribute on an <input type="file">. // Parameter names must contain only printable ASCII characters, // and may not contain a quote (") character. - // Only HTTP URLs are currently supported. Returns true on success. + // Only HTTP(S) URLs are currently supported. Returns true on success. // TODO(bryner): we should expose the response to the caller. static bool SendRequest(const wstring &url, const map<wstring, wstring> ¶meters, |